This repository was archived by the owner on Dec 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ findBoost("")
31
31
32
32
if (NOT Boost_FOUND )
33
33
string (REPLACE "." "_" BOOST_VER_ ${BOOST_VER} )
34
- set (BOOST_URL "https://dl.bintray.com/boostorg /release/${BOOST_VER} /source/boost_${BOOST_VER_} .tar.bz2" CACHE STRING "Boost download URL" )
34
+ set (BOOST_URL "https://boostorg.jfrog.io/artifactory/main /release/${BOOST_VER} /source/boost_${BOOST_VER_} .tar.bz2" CACHE STRING "Boost download URL" )
35
35
set (BOOST_URL_SHA256 "953db31e016db7bb207f11432bef7df100516eeb746843fa0486a222e3fd49cb" CACHE STRING "Boost download URL SHA256 checksum" )
36
36
option (BOOST_DISABLE_TESTS "Do not build test targets" OFF )
37
37
include (FetchContent )
Original file line number Diff line number Diff line change @@ -15,11 +15,13 @@ RUN apk update && apk add cmake wget alpine-sdk linux-headers openssl-dev libstd
15
15
16
16
17
17
# Build Boost 1.75
18
+ ENV BOOST_VER=1.75.0
19
+ ENV BOOST_VER_=1_75_0
18
20
RUN mkdir /buildboost
19
21
WORKDIR /buildboost
20
- RUN wget https://dl.bintray.com/boostorg/ release/1.75.0 /source/boost_1_75_0 .tar.bz2
21
- RUN tar xvjf boost_1_75_0 .tar.bz2
22
- WORKDIR /buildboost/boost_1_75_0
22
+ RUN wget https://boostorg.jfrog.io/artifactory/main/ release/${BOOST_VER} /source/boost_${BOOST_VER_} .tar.bz2
23
+ RUN tar xvjf boost_${BOOST_VER_} .tar.bz2
24
+ WORKDIR /buildboost/boost_${BOOST_VER_}
23
25
RUN ./bootstrap.sh
24
26
RUN ./b2 -j 6 install
25
27
Original file line number Diff line number Diff line change @@ -20,11 +20,13 @@ RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get -y install libss
20
20
gcovr
21
21
22
22
#Build Boost 1.75
23
+ ENV BOOST_VER=1.75.0
24
+ ENV BOOST_VER_=1_75_0
23
25
RUN mkdir /buildboost
24
26
WORKDIR /buildboost
25
- RUN wget https://dl.bintray.com/boostorg/ release/1.75.0 /source/boost_1_75_0 .tar.bz2
26
- RUN tar xvjf boost_1_75_0 .tar.bz2
27
- WORKDIR /buildboost/boost_1_75_0
27
+ RUN wget https://boostorg.jfrog.io/artifactory/main/ release/${BOOST_VER} /source/boost_${BOOST_VER_} .tar.bz2
28
+ RUN tar xvjf boost_${BOOST_VER_} .tar.bz2
29
+ WORKDIR /buildboost/boost_${BOOST_VER_}
28
30
RUN ./bootstrap.sh
29
31
RUN ./b2 -j 6 install
30
32
You can’t perform that action at this time.
0 commit comments