Skip to content

Commit

Permalink
Fix broken boost url
Browse files Browse the repository at this point in the history
  • Loading branch information
Iandiehard committed Jan 8, 2024
1 parent 3781e87 commit ceb0d41
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ apt-get install g++-9
BOOST_MAJOR_VERSION="1"
BOOST_MINOR_VERSION="79"

wget "https://boostorg.jfrog.io/artifactory/main/release/${BOOST_MAJOR_VERSION}.${BOOST_MINOR_VERSION}.0/source/boost_${BOOST_MAJOR_VERSION}_${BOOST_MINOR_VERSION}_0.tar.gz"
# Jfrog boost link is broken
# wget "https://boostorg.jfrog.io/artifactory/main/release/${BOOST_MAJOR_VERSION}.${BOOST_MINOR_VERSION}.0/source/boost_${BOOST_MAJOR_VERSION}_${BOOST_MINOR_VERSION}_0.tar.gz"
wget "https://sourceforge.net/projects/boost/files/boost/${BOOST_MAJOR_VERSION}.${BOOST_MINOR_VERSION}.0/boost_${BOOST_MAJOR_VERSION}_${BOOST_MINOR_VERSION}_0.tar.gz"
mkdir boost
tar -zxvf boost_${BOOST_MAJOR_VERSION}_${BOOST_MINOR_VERSION}_0.tar.gz -C boost
cd boost/boost_${BOOST_MAJOR_VERSION}_${BOOST_MINOR_VERSION}_0 || exit
Expand Down

0 comments on commit ceb0d41

Please sign in to comment.