Skip to content

Commit

Permalink
env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Sep 18, 2024
1 parent ac3b223 commit 246dfa7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,12 @@ jobs:
- name: set env variables
if: runner.os == 'macOS'
run: |
echo "C_INCLUDE_PATH=/usr/local/include" >> $GITHUB_ENV
echo "CPLUS_INCLUDE_PATH=/usr/local/include" >> $GITHUB_ENV
echo "" >> $GITHUB_ENV
echo "" >> $GITHUB_ENV
- name: Build
env:
C_INCLUDE_PATH: '/usr/local/include'
CPLUS_INCLUDE_PATH: '/usr/local/include'
run: |
cmake ./
make

0 comments on commit 246dfa7

Please sign in to comment.