Skip to content

Commit

Permalink
GA: Unlink pre-installed boost on macos-11 CMake job
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuzzbawls committed Jan 22, 2024
1 parent 294e379 commit e9294f0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ jobs:
fi
if [[ ${{ matrix.config.os }} = macos* ]]; then
brew install "$APT_BASE" ${{ matrix.config.packages }}
# GA's macOS 11 image has recently started leaking the pre-installed boost libraries
# despite us setting an explicit path. Temp workaround is to unlink the pre-installed version
if [ "${{ matrix.config.os }}" = "macos-11" ]; then
brew unlink boost && brew link --overwrite -f [email protected]
fi
fi
- name: ccache cache files
Expand Down

0 comments on commit e9294f0

Please sign in to comment.