Update Boost to 1.87.0

Also update the download URL as downloads seem to no longer be hosted on JFrog.
This commit is contained in:
Oliver Hamlet
2025-01-05 11:59:40 +00:00
parent 5cabe7ec3f
commit 6bc2189cc5
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -8,7 +8,7 @@ on:
pull_request:
env:
BOOST_VERSION: 1.83.0
BOOST_VERSION: 1.87.0
CARGO_TERM_COLOR: always
MSVC_CONFIG: RelWithDebInfo
@@ -42,7 +42,7 @@ jobs:
id: get-boost
run: |
BOOST_BASENAME=boost_${BOOST_VERSION//./_}
wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_BASENAME}.tar.gz
wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_BASENAME}.tar.gz
tar -xf ${BOOST_BASENAME}.tar.gz
echo "root=${BOOST_BASENAME}" >> $GITHUB_OUTPUT
@@ -143,7 +143,7 @@ jobs:
id: get-boost
run: |
$BOOST_BASENAME="boost_" + $env:BOOST_VERSION -replace "\.", "_"
curl -sSfLO "https://boostorg.jfrog.io/artifactory/main/release/${env:BOOST_VERSION}/source/${BOOST_BASENAME}.7z"
curl -sSfLO "https://archives.boost.io/release/${env:BOOST_VERSION}/source/${BOOST_BASENAME}.7z"
7z x "${BOOST_BASENAME}.7z"
echo "root=$BOOST_BASENAME" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
+3 -3
View File
@@ -5,7 +5,7 @@ on:
tags: '*'
env:
BOOST_VERSION: 1.83.0
BOOST_VERSION: 1.87.0
CARGO_TERM_COLOR: always
MSVC_CONFIG: RelWithDebInfo
@@ -57,7 +57,7 @@ jobs:
id: get-boost
run: |
BOOST_BASENAME=boost_${BOOST_VERSION//./_}
wget https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_BASENAME}.tar.gz
wget https://archives.boost.io/release/${BOOST_VERSION}/source/${BOOST_BASENAME}.tar.gz
tar -xf ${BOOST_BASENAME}.tar.gz
echo "root=${BOOST_BASENAME}" >> $GITHUB_OUTPUT
@@ -138,7 +138,7 @@ jobs:
id: get-boost
run: |
$BOOST_BASENAME="boost_" + $env:BOOST_VERSION -replace "\.", "_"
curl -sSfLO "https://boostorg.jfrog.io/artifactory/main/release/${env:BOOST_VERSION}/source/${BOOST_BASENAME}.7z"
curl -sSfLO "https://archives.boost.io/release/${env:BOOST_VERSION}/source/${BOOST_BASENAME}.7z"
7z x "${BOOST_BASENAME}.7z"
echo "root=$BOOST_BASENAME" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append