Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better exported paths
Browse files Browse the repository at this point in the history
kelson42 committed Jun 3, 2024

Verified

This commit was signed with the committer’s verified signature.
kelson42 Kelson
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
@@ -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
@@ -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:

0 comments on commit 159e7a2

Please sign in to comment.