Skip to content

Commit

Permalink
Move from jfrog artifactory to archives.boost.io to fix boost download (
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccorm4 authored and Timur Abishev committed Jan 9, 2024
1 parent 705a673 commit e3b3423
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ def create_dockerfile_buildbase(ddir, dockerfile_name, argmap):
# Install boost version >= 1.78 for boost::span
# Current libboost-dev apt packages are < 1.78, so install from tar.gz
RUN wget -O /tmp/boost.tar.gz \
https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz && \
https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz && \
(cd /tmp && tar xzf boost.tar.gz) && \
cd /tmp/boost_1_80_0 && ./bootstrap.sh --prefix=/usr && ./b2 install && \
mv /tmp/boost_1_80_0/boost /usr/include/boost
Expand Down Expand Up @@ -1208,7 +1208,7 @@ def dockerfile_prepare_container_linux(argmap, backends, enable_gpu, target_mach
# Install boost version >= 1.78 for boost::span
# Current libboost-dev apt packages are < 1.78, so install from tar.gz
RUN wget -O /tmp/boost.tar.gz \
https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz \
https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz \
&& (cd /tmp && tar xzf boost.tar.gz) \
&& cd /tmp/boost_1_80_0 \
&& ./bootstrap.sh --prefix=/usr \
Expand Down

0 comments on commit e3b3423

Please sign in to comment.