Skip to content

Commit 7707c81

Browse files
committed
Fix boost download URL
1 parent a66da75 commit 7707c81

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/depends/boost.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ while getopts "b:t:" c; do
3333
esac
3434
done
3535

36-
wget https://dl.bintray.com/boostorg/release/1.71.0/source/boost_1_71_0.tar.bz2
37-
tar xf boost_1_71_0.tar.bz2
38-
cd boost_1_71_0
36+
wget https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.bz2
37+
tar xf boost_1_72_0.tar.bz2
38+
cd boost_1_72_0
3939
./bootstrap.sh
4040

4141
build()

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/cache@v1
2727
with:
2828
path: usr
29-
key: ${{ runner.os }}-boost-20200401
29+
key: ${{ runner.os }}-boost-20210508-1-72-0
3030
- name: Build boost
3131
if: steps.cache-boost.outputs.cache-hit != 'true'
3232
run: ./.github/depends/boost.sh -b both -t gcc

.github/workflows/gha.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/cache@v1
2424
with:
2525
path: usr
26-
key: ${{ runner.os }}-boost-20200107
26+
key: ${{ runner.os }}-boost-20210508-1-72-0
2727
- name: Build boost
2828
if: steps.cache-boost.outputs.cache-hit != 'true'
2929
run: ./.github/depends/boost.sh -b 64 -t clang
@@ -102,7 +102,7 @@ jobs:
102102
uses: actions/cache@v1
103103
with:
104104
path: usr
105-
key: ${{ runner.os }}-boost-20200107
105+
key: ${{ runner.os }}-boost-20210508-1-72-0
106106
- name: Build boost
107107
if: steps.cache-boost.outputs.cache-hit != 'true'
108108
run: ./.github/depends/boost.sh -b both -t gcc

0 commit comments

Comments
 (0)