Skip to content

Commit 7a6a9a2

Browse files
committed
Use Boost 1.89 in CI builds
1 parent bc86b36 commit 7a6a9a2

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/cmake-latest-runners.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ jobs:
9090
if: runner.os == 'Windows'
9191
shell: pwsh
9292
run: |
93-
$BoostUri = "https://downloads.sourceforge.net/project/boost/boost-binaries/1.88.0/boost_1_88_0-msvc-14.3-64.exe"
93+
$BoostUri = "https://downloads.sourceforge.net/project/boost/boost-binaries/1.89.0/boost_1_89_0-msvc-14.3-64.exe"
9494
Start-BitsTransfer -Source $BoostUri -Destination $env:RUNNER_TEMP\boost.exe
9595
Start-Process -Wait -FilePath "$env:RUNNER_TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=$env:RUNNER_TEMP\boost"
9696
9797
choco install -y ninja
9898
99-
Write "Boost_DIR=$env:RUNNER_TEMP\boost\lib64-msvc-14.3\cmake\Boost-1.88.0" >> $env:GITHUB_ENV
99+
Write "Boost_DIR=$env:RUNNER_TEMP\boost\lib64-msvc-14.3\cmake\Boost-1.89.0" >> $env:GITHUB_ENV
100100
101101
- name: Set up Visual Studio shell on Windows
102102
if: runner.os == 'Windows'

.github/workflows/cmake.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ jobs:
7575
variant: sccache
7676
- name: Setup
7777
run: |
78-
$Url = "https://archives.boost.io/release/1.88.0/source/boost_1_88_0.zip"
78+
$Url = "https://archives.boost.io/release/1.89.0/source/boost_1_89_0.zip"
7979
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.zip")
8080
Expand-Archive -Path "$RUNNER_TEMP\boost.zip" -DestinationPath C:\local
81-
Rename-Item -Path "C:\local\boost_1_88_0" -NewName "boost"
81+
Rename-Item -Path "C:\local\boost_1_89_0" -NewName "boost"
8282
$Url = "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip"
8383
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\ninja-win.zip")
8484
Expand-Archive -Path "$RUNNER_TEMP\ninja-win.zip" -DestinationPath C:\local\ninja
@@ -117,10 +117,10 @@ jobs:
117117
variant: sccache
118118
- name: Setup
119119
run: |
120-
$Url = "https://archives.boost.io/release/1.88.0/source/boost_1_88_0.zip"
120+
$Url = "https://archives.boost.io/release/1.89.0/source/boost_1_89_0.zip"
121121
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.zip")
122122
Expand-Archive -Path "$RUNNER_TEMP\boost.zip" -DestinationPath C:\local
123-
Rename-Item -Path "C:\local\boost_1_88_0" -NewName "boost"
123+
Rename-Item -Path "C:\local\boost_1_89_0" -NewName "boost"
124124
$Url = "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip"
125125
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\ninja-win.zip")
126126
Expand-Archive -Path "$RUNNER_TEMP\ninja-win.zip" -DestinationPath C:\local\ninja
@@ -159,10 +159,10 @@ jobs:
159159
variant: sccache
160160
- name: Setup
161161
run: |
162-
$Url = "https://archives.boost.io/release/1.88.0/source/boost_1_88_0.zip"
162+
$Url = "https://archives.boost.io/release/1.89.0/source/boost_1_89_0.zip"
163163
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.zip")
164164
Expand-Archive -Path "$RUNNER_TEMP\boost.zip" -DestinationPath C:\local
165-
Rename-Item -Path "C:\local\boost_1_88_0" -NewName "boost"
165+
Rename-Item -Path "C:\local\boost_1_89_0" -NewName "boost"
166166
$Url = "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip"
167167
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\ninja-win.zip")
168168
Expand-Archive -Path "$RUNNER_TEMP\ninja-win.zip" -DestinationPath C:\local\ninja

.github/workflows/msvc-all-configs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
boost_version: 77
1919
vsversion: 2019
2020
- toolset: v143
21-
boost_version: 88
21+
boost_version: 89
2222
vsversion: 2022
2323
steps:
2424
- uses: actions/checkout@v4

.github/workflows/msvc-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020

2121
- name: Setup
2222
run: |
23-
$Url = "https://archives.boost.io/release/1.88.0/source/boost_1_88_0.zip"
23+
$Url = "https://archives.boost.io/release/1.89.0/source/boost_1_89_0.zip"
2424
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.zip")
2525
Expand-Archive -Path "$RUNNER_TEMP\boost.zip" -DestinationPath C:\local
26-
Rename-Item -Path "C:\local\boost_1_88_0" -NewName "boost"
26+
Rename-Item -Path "C:\local\boost_1_89_0" -NewName "boost"
2727
2828
- name: Configure CMake
2929
env:

.github/workflows/msvc-nondefault.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
boost_version: 77
1818
vsversion: 2019
1919
- toolset: v143
20-
boost_version: 88
20+
boost_version: 89
2121
vsversion: 2022
2222
steps:
2323
- uses: actions/checkout@v4

.github/workflows/msvc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
boost_version: 77
1414
vsversion: 2019
1515
- toolset: v143
16-
boost_version: 88
16+
boost_version: 89
1717
vsversion: 2022
1818
steps:
1919
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)