Skip to content

Commit

Permalink
Better exported paths
Browse files Browse the repository at this point in the history
  • Loading branch information
kelson42 committed Jun 3, 2024
1 parent 3467205 commit 159e7a2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ jobs:
with:
target_platform: ${{ matrix.target }}

- name: Compile
- name: Compile with x86_64
if: matrix.target == 'macos-x86_64-dyn'
shell: bash
run: |
export PKG_CONFIG_PATH=$HOME/BUILD_x86_64-apple-darwin/INSTALL/lib/pkgconfig
Expand All @@ -64,6 +65,15 @@ jobs:
cd build
ninja
- name: Compile with ARM
if: matrix.target == 'macos-aarch64-dyn'
shell: bash
run: |
export PKG_CONFIG_PATH=$HOME/BUILD_arm64-apple-macos/INSTALL/lib/pkgconfig
export CPPFLAGS="-I$HOME/BUILD_arm64-apple-macos/INSTALL/include"
meson . build
cd build
ninja
Linux:
strategy:
Expand Down

0 comments on commit 159e7a2

Please sign in to comment.