Skip to content

Commit 0b141fd

Browse files
authored
Merge pull request #13559 from KratosMultiphysics/ci/upgrade-boost
[CI] Upgrade boost to 1.87
2 parents f1bb171 + 8afe697 commit 0b141fd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ jobs:
265265

266266
- name: Download boost
267267
run: |
268-
$url = "https://archives.boost.io/release/1.74.0/source/boost_1_74_0.tar.gz"
268+
$url = "https://archives.boost.io/release/1.87.0/source/boost_1_87_0.tar.gz"
269269
(New-Object System.Net.WebClient).DownloadFile($url, "$env:TEMP\boost.tar.gz")
270270
7z.exe x "$env:TEMP\boost.tar.gz" -o"$env:TEMP\boostArchive" -y | Out-Null
271271
7z.exe x "$env:TEMP\boostArchive" -o"$env:TEMP\boost" -y | Out-Null
@@ -481,7 +481,7 @@ jobs:
481481

482482
- name: Download boost
483483
run: |
484-
$url = "https://archives.boost.io/release/1.74.0/source/boost_1_74_0.tar.gz"
484+
$url = "https://archives.boost.io/release/1.87.0/source/boost_1_87_0.tar.gz"
485485
(New-Object System.Net.WebClient).DownloadFile($url, "$env:TEMP\boost.tar.gz")
486486
7z.exe x "$env:TEMP\boost.tar.gz" -o"$env:TEMP\boostArchive" -y | Out-Null
487487
7z.exe x "$env:TEMP\boostArchive" -o"$env:TEMP\boost" -y | Out-Null

.github/workflows/nightly_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188

189189
- name: Download boost
190190
run: |
191-
$url = "https://archives.boost.io/release/1.74.0/source/boost_1_74_0.tar.gz"
191+
$url = "https://archives.boost.io/release/1.87.0/source/boost_1_87_0.tar.gz"
192192
(New-Object System.Net.WebClient).DownloadFile($url, "$env:TEMP\boost.tar.gz")
193193
7z.exe x "$env:TEMP\boost.tar.gz" -o"$env:TEMP\boostArchive" -y | Out-Null
194194
7z.exe x "$env:TEMP\boostArchive" -o"$env:TEMP\boost" -y | Out-Null

.github/workflows/rocky_configure.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ export PYTHON_EXECUTABLE=${PYTHON_EXECUTABLE:-"/usr/bin/python3"}
2020
export KRATOS_INSTALL_PYTHON_USING_LINKS=ON
2121

2222
# Boost setup
23-
BOOST_VERSION="1.86.0"
24-
BOOST_DIR_NAME="boost_1_86_0"
23+
BOOST_VERSION="1.87.0"
24+
BOOST_DIR_NAME="boost_1_87_0"
2525
BOOST_TARBALL_URL="https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_DIR_NAME}.tar.gz"
2626
BOOST_DOWNLOAD_DIR="${KRATOS_SOURCE}/external_libraries"
2727
BOOST_EXTRACT_DIR="${BOOST_DOWNLOAD_DIR}/${BOOST_DIR_NAME}"

0 commit comments

Comments
 (0)