Skip to content

Commit 9aff769

Browse files
authored
Merge pull request #15691 from ethereum/boost_download_location
Adapts to new Boost download location
2 parents 3d1d1f7 + ac4d267 commit 9aff769

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.circleci/osx_install_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ then
6666
boost_version="1.84.0"
6767
boost_package="boost_${boost_version//./_}.tar.bz2"
6868
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"
7070
tar xf "$boost_package"
7171
rm "$boost_package"
7272
cd "$boost_dir"

scripts/docker/buildpack-deps/Dockerfile.emscripten

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# Using $(em-config CACHE)/sysroot/usr seems to work, though, and still has cmake find the
3434
# dependencies automatically.
3535
FROM emscripten/emsdk:3.1.19 AS base
36-
LABEL version="19"
36+
LABEL version="20"
3737

3838
ADD emscripten.jam /usr/src
3939
RUN set -ex && \
@@ -70,7 +70,7 @@ RUN set -ex && \
7070
# Install Boost
7171
RUN set -ex && \
7272
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 && \
7474
test "$(sha256sum boost.tar.bz2)" = "953db31e016db7bb207f11432bef7df100516eeb746843fa0486a222e3fd49cb boost.tar.bz2" && \
7575
tar -xf boost.tar.bz2 && \
7676
rm boost.tar.bz2 && \

scripts/docker/buildpack-deps/Dockerfile.ubuntu.clang.ossfuzz

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# (c) 2016-2021 solidity contributors.
2323
#------------------------------------------------------------------------------
2424
FROM gcr.io/oss-fuzz-base/base-clang:latest as base
25-
LABEL version="7"
25+
LABEL version="8"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

@@ -73,7 +73,7 @@ FROM base AS libraries
7373
# Boost
7474
RUN set -ex; \
7575
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; \
7777
test "$(sha256sum boost.tar.bz2)" = "83bfc1507731a0906e387fc28b7ef5417d591429e51e788417fe9ff025e116b1 boost.tar.bz2" && \
7878
tar -xf boost.tar.bz2; \
7979
rm boost.tar.bz2; \

scripts/install_deps.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if ( -not (Test-Path "$PSScriptRoot\..\deps\boost") ) {
1616

1717
# FIXME: The default user agent results in Artifactory treating Invoke-WebRequest as a browser
1818
# 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 ""
2020
if ((Get-FileHash boost.zip).Hash -ne "c86bd9d9eef795b4b0d3802279419fde5221922805b073b9bd822edecb1ca28e") {
2121
throw 'Downloaded Boost source package has wrong checksum.'
2222
}

0 commit comments

Comments
 (0)