Skip to content

Commit aa45174

Browse files
authored
ci: pin boost 1.81 on Windows CI (#357)
The current boost version for Windows is floating, and it recently updated to Boost 1.84. That's a problem because our boost download path is hardcoded since there isn't an easy way to obtain it from `choco`. This pins to 1.81 just like the Linux build.
1 parent f1451d1 commit aa45174

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/install-boost/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ runs:
3131
id: boost-download
3232
shell: bash
3333
run: |
34-
choco install boost-msvc-14.3 -y
35-
echo "BOOST_ROOT=C:\local\boost_1_82_0" >> $GITHUB_OUTPUT
34+
choco install boost-msvc-14.3 --version 1.81.0 -y
35+
echo "BOOST_ROOT=C:\local\boost_1_81_0" >> $GITHUB_OUTPUT
3636
3737
- name: Install boost using homebrew
3838
id: brew-action

0 commit comments

Comments
 (0)