Skip to content

Commit dd8e47f

Browse files
committed
Upgrade to Boost 1.90 in CI workflows
1 parent eef27a3 commit dd8e47f

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
@@ -89,13 +89,13 @@ jobs:
8989
if: runner.os == 'Windows'
9090
shell: pwsh
9191
run: |
92-
$BoostUri = "https://archives.boost.io/release/1.89.0/binaries/boost_1_89_0-msvc-14.3-64.exe"
92+
$BoostUri = "https://archives.boost.io/release/1.90.0/binaries/boost_1_90_0-msvc-14.3-64.exe"
9393
Start-BitsTransfer -Source $BoostUri -Destination $env:RUNNER_TEMP\boost.exe
9494
Start-Process -Wait -FilePath "$env:RUNNER_TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=$env:RUNNER_TEMP\boost"
9595
9696
choco install -y ninja
9797
98-
Write "Boost_DIR=$env:RUNNER_TEMP\boost\lib64-msvc-14.3\cmake\Boost-1.89.0" >> $env:GITHUB_ENV
98+
Write "Boost_DIR=$env:RUNNER_TEMP\boost\lib64-msvc-14.3\cmake\Boost-1.90.0" >> $env:GITHUB_ENV
9999
100100
- name: Set up Visual Studio shell on Windows
101101
if: runner.os == 'Windows'

.github/workflows/cmake.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ jobs:
7979
variant: sccache
8080
- name: Setup
8181
run: |
82-
$Url = "https://archives.boost.io/release/1.89.0/source/boost_1_89_0.zip"
82+
$Url = "https://archives.boost.io/release/1.90.0/source/boost_1_90_0.zip"
8383
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.zip")
8484
Expand-Archive -Path "$RUNNER_TEMP\boost.zip" -DestinationPath C:\local
85-
Rename-Item -Path "C:\local\boost_1_89_0" -NewName "boost"
85+
Rename-Item -Path "C:\local\boost_1_90_0" -NewName "boost"
8686
$Url = "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip"
8787
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\ninja-win.zip")
8888
Expand-Archive -Path "$RUNNER_TEMP\ninja-win.zip" -DestinationPath C:\local\ninja
@@ -121,10 +121,10 @@ jobs:
121121
variant: sccache
122122
- name: Setup
123123
run: |
124-
$Url = "https://archives.boost.io/release/1.89.0/source/boost_1_89_0.zip"
124+
$Url = "https://archives.boost.io/release/1.90.0/source/boost_1_90_0.zip"
125125
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.zip")
126126
Expand-Archive -Path "$RUNNER_TEMP\boost.zip" -DestinationPath C:\local
127-
Rename-Item -Path "C:\local\boost_1_89_0" -NewName "boost"
127+
Rename-Item -Path "C:\local\boost_1_90_0" -NewName "boost"
128128
$Url = "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip"
129129
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\ninja-win.zip")
130130
Expand-Archive -Path "$RUNNER_TEMP\ninja-win.zip" -DestinationPath C:\local\ninja
@@ -163,10 +163,10 @@ jobs:
163163
variant: sccache
164164
- name: Setup
165165
run: |
166-
$Url = "https://archives.boost.io/release/1.89.0/source/boost_1_89_0.zip"
166+
$Url = "https://archives.boost.io/release/1.90.0/source/boost_1_90_0.zip"
167167
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.zip")
168168
Expand-Archive -Path "$RUNNER_TEMP\boost.zip" -DestinationPath C:\local
169-
Rename-Item -Path "C:\local\boost_1_89_0" -NewName "boost"
169+
Rename-Item -Path "C:\local\boost_1_90_0" -NewName "boost"
170170
$Url = "https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip"
171171
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\ninja-win.zip")
172172
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: 89
21+
boost_version: 90
2222
vsversion: 2022
2323
steps:
2424
- uses: actions/checkout@v6

.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.89.0/source/boost_1_89_0.zip"
23+
$Url = "https://archives.boost.io/release/1.90.0/source/boost_1_90_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_89_0" -NewName "boost"
26+
Rename-Item -Path "C:\local\boost_1_90_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: 89
20+
boost_version: 90
2121
vsversion: 2022
2222
steps:
2323
- uses: actions/checkout@v6

.github/workflows/msvc.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: 89
20+
boost_version: 90
2121
vsversion: 2022
2222
steps:
2323
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)