forked from PIVX-Project/PIVX
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GA: Unlink pre-installed boost on macos-11 CMake job
- Loading branch information
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|