File tree 4 files changed +4
-4
lines changed 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 66
66
boost_version=" 1.84.0"
67
67
boost_package=" boost_${boost_version// ./ _} .tar.bz2"
68
68
boost_dir=" boost_${boost_version// ./ _} "
69
- wget " https://boostorg.jfrog .io/artifactory/main /release/$boost_version /source/$boost_package "
69
+ wget " https://archives.boost .io/release/$boost_version /source/$boost_package "
70
70
tar xf " $boost_package "
71
71
rm " $boost_package "
72
72
cd " $boost_dir "
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ RUN set -ex && \
70
70
# Install Boost
71
71
RUN set -ex && \
72
72
cd /usr/src && \
73
- wget -q 'https://boostorg.jfrog .io/artifactory/main /release/1.75.0/source/boost_1_75_0.tar.bz2' -O boost.tar.bz2 && \
73
+ wget -q 'https://archives.boost .io/release/1.75.0/source/boost_1_75_0.tar.bz2' -O boost.tar.bz2 && \
74
74
test "$(sha256sum boost.tar.bz2)" = "953db31e016db7bb207f11432bef7df100516eeb746843fa0486a222e3fd49cb boost.tar.bz2" && \
75
75
tar -xf boost.tar.bz2 && \
76
76
rm boost.tar.bz2 && \
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ FROM base AS libraries
73
73
# Boost
74
74
RUN set -ex; \
75
75
cd /usr/src; \
76
- wget -q 'https://boostorg.jfrog .io/artifactory/main /release/1.74.0/source/boost_1_74_0.tar.bz2' -O boost.tar.bz2; \
76
+ wget -q 'https://archives.boost .io/release/1.74.0/source/boost_1_74_0.tar.bz2' -O boost.tar.bz2; \
77
77
test "$(sha256sum boost.tar.bz2)" = "83bfc1507731a0906e387fc28b7ef5417d591429e51e788417fe9ff025e116b1 boost.tar.bz2" && \
78
78
tar -xf boost.tar.bz2; \
79
79
rm boost.tar.bz2; \
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ if ( -not (Test-Path "$PSScriptRoot\..\deps\boost") ) {
16
16
17
17
# FIXME: The default user agent results in Artifactory treating Invoke-WebRequest as a browser
18
18
# and serving it a page that requires JavaScript.
19
- Invoke-WebRequest - URI " https://boostorg.jfrog .io/artifactory/main /release/1.83.0/source/boost_1_83_0.zip" - OutFile boost.zip - UserAgent " "
19
+ Invoke-WebRequest - URI " https://archives.boost .io/release/1.83.0/source/boost_1_83_0.zip" - OutFile boost.zip - UserAgent " "
20
20
if ((Get-FileHash boost.zip).Hash -ne " c86bd9d9eef795b4b0d3802279419fde5221922805b073b9bd822edecb1ca28e" ) {
21
21
throw ' Downloaded Boost source package has wrong checksum.'
22
22
}
You can’t perform that action at this time.
0 commit comments