Skip to content

Commit 5698c04

Browse files
committed
Better exported paths
1 parent 786e185 commit 5698c04

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ jobs:
5555
with:
5656
target_platform: ${{ matrix.target }}
5757

58-
- name: Compile
58+
- name: Compile with x86_64
59+
if: matrix.target == 'macos-x86_64-dyn'
5960
shell: bash
6061
run: |
6162
export PKG_CONFIG_PATH=$HOME/BUILD_x86_64-apple-darwin/INSTALL/lib/pkgconfig
@@ -64,6 +65,15 @@ jobs:
6465
cd build
6566
ninja
6667
68+
- name: Compile with ARM
69+
if: matrix.target == 'macos-aarch64-dyn'
70+
shell: bash
71+
run: |
72+
export PKG_CONFIG_PATH=$HOME/BUILD_arm64-apple-macos/INSTALL/lib/pkgconfig
73+
export CPPFLAGS="-I$HOME/BUILD_arm64-apple-macos/INSTALL/include"
74+
meson . build
75+
cd build
76+
ninja
6777
6878
Linux:
6979
strategy:

0 commit comments

Comments
 (0)