Skip to content

Commit

Permalink
ci: fix macos brew include paths. differ based on arch
Browse files Browse the repository at this point in the history
  • Loading branch information
aaraney committed Apr 23, 2024
1 parent e9bd7f4 commit b8e6ef0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/ngen-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ runs:
- name: Setup macOS Default Compiler Includes
if: runner.os == 'macOS'
run: |
echo "C_INCLUDE_PATH=/usr/local/include" >> $GITHUB_ENV
echo "CPLUS_INCLUDE_PATH=/usr/local/include" >> $GITHUB_ENV
echo "C_INCLUDE_PATH=$(brew --prefix)/include" >> $GITHUB_ENV
echo "CPLUS_INCLUDE_PATH=$(brew --prefix)/include" >> $GITHUB_ENV
shell: bash

- name: Cmake Initialization
Expand Down

0 comments on commit b8e6ef0

Please sign in to comment.