-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: CMake: Pin Boost version on macOS
Disable MSYS2 job because there are no trivial ways to install older Boost.
- Loading branch information
1 parent
a8b3eeb
commit dff023f
Showing
1 changed file
with
4 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -150,7 +150,7 @@ jobs: | |
- name: Install dependencies | ||
run: brew install --overwrite | ||
${{matrix.deps}} | ||
boost | ||
boost@1.85 | ||
ccache | ||
libzip | ||
ninja | ||
|
@@ -168,6 +168,7 @@ jobs: | |
-DCMAKE_C_COMPILER_LAUNCHER=ccache | ||
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
${{matrix.options}} | ||
-DBOOST_ROOT=$(brew --prefix [email protected]) | ||
-DENABLE_TESTS=ON | ||
- name: Restore cache | ||
uses: actions/cache/restore@v4 | ||
|
@@ -195,6 +196,8 @@ jobs: | |
retention-days: 7 | ||
|
||
test-msys2: | ||
# MSYS2 is rolling release, only latest Boost is available. | ||
if: false | ||
runs-on: windows-latest | ||
defaults: | ||
run: | ||
|