Skip to content

Commit

Permalink
Update cpp-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cr-marcstevens authored Jul 6, 2024
1 parent 152390b commit 217ab89
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cpp-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install dependencies (macos)
run: brew install automake libtool gmp
run: |
brew install automake libtool gmp
echo "CPATH=$CPATH:$(brew --prefix)/include" >> "$GITHUB_ENV" &&
echo "LIBRARY_PATH=$LIBRARY_PATH:$(brew --prefix)/lib" >> "$GITHUB_ENV"
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(brew --prefix)/lib" >> "$GITHUB_ENV"
if: matrix.os == 'macos-latest'
- name: Prepare
run: autoreconf --install
Expand Down

0 comments on commit 217ab89

Please sign in to comment.