We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786e185 commit 5698c04Copy full SHA for 5698c04
.github/workflows/ci.yml
@@ -55,7 +55,8 @@ jobs:
55
with:
56
target_platform: ${{ matrix.target }}
57
58
- - name: Compile
+ - name: Compile with x86_64
59
+ if: matrix.target == 'macos-x86_64-dyn'
60
shell: bash
61
run: |
62
export PKG_CONFIG_PATH=$HOME/BUILD_x86_64-apple-darwin/INSTALL/lib/pkgconfig
@@ -64,6 +65,15 @@ jobs:
64
65
cd build
66
ninja
67
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
77
78
Linux:
79
strategy:
0 commit comments