Skip to content

Commit 491790a

Browse files
committed
Fox CI workflow for Boost 1.87 upgradation
1 parent 7cb3478 commit 491790a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
- name: Install boost
2929
working-directory: ${{ github.workspace }}
3030
run: |
31-
wget https://boostorg.jfrog.io/artifactory/main/release/1.84.0/source/boost_1_84_0.tar.gz -O /tmp/boost.tar.gz
32-
tar xzvf /tmp/boost.tar.gz
33-
cd boost_1_84_0
31+
wget https://sourceforge.net/projects/boost/files/boost/1.87.0/boost_1_87_0.tar.gz/download -O /tmp/boost_1_87_0.tar.gz
32+
tar xzvf /tmp/boost_1_87_0.tar.gz
33+
cd boost_1_87_0
3434
./bootstrap.sh --with-toolset=clang
3535
sudo ./b2 install toolset=clang link=static
3636
- name: Install protobuf
@@ -75,9 +75,9 @@ jobs:
7575
- name: Install boost
7676
working-directory: ${{ github.workspace }}
7777
run: |
78-
wget https://boostorg.jfrog.io/artifactory/main/release/1.84.0/source/boost_1_84_0.tar.gz -O /tmp/boost.tar.gz
79-
tar xzvf /tmp/boost.tar.gz
80-
cd boost_1_84_0
78+
wget https://sourceforge.net/projects/boost/files/boost/1.87.0/boost_1_87_0.tar.gz/download -O /tmp/boost_1_87_0.tar.gz
79+
tar xzvf /tmp/boost_1_87_0.tar.gz
80+
cd boost_1_87_0
8181
./bootstrap.sh
8282
sudo ./b2 install link=static
8383
- name: Install protobuf
@@ -155,9 +155,9 @@ jobs:
155155
$env:Path += ";C:\Program Files (x86)\zlib\bin"
156156
- name: Install boost
157157
run: |
158-
Invoke-WebRequest "https://boostorg.jfrog.io/artifactory/main/release/1.84.0/source/boost_1_84_0.zip" -OutFile "boost_1_84_0.zip"
159-
Expand-Archive "boost_1_84_0.zip" -Force
160-
cd .\boost_1_84_0\boost_1_84_0\
158+
Invoke-WebRequest "https://sourceforge.net/projects/boost/files/boost/1.87.0/boost_1_87_0.zip/download" -OutFile "boost_1_87_0.zip"
159+
Expand-Archive "boost_1_87_0.zip" -Force
160+
cd .\boost_1_87_0\
161161
.\bootstrap.bat
162162
.\b2 toolset=msvc-14.2 address-model=64 install define=_WIN32_WINNT=0x0601 define=BOOST_WINAPI_VERSION_WIN7 link=static
163163
- name: Install protobuf

0 commit comments

Comments
 (0)