Merge pull request #1122 from redboltz/fix_ci

Updated the boost version to 1.85.0
This commit is contained in:
Takatoshi Kondo 2024-05-28 07:22:01 +09:00 committed by GitHub
commit 820ccf1f1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 18 additions and 14 deletions

View File

@ -49,9 +49,9 @@ while getopts "b:t:p:" c; do
done done
mkdir $prefix || exit 1 mkdir $prefix || exit 1
wget https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2 || exit 1 wget https://boostorg.jfrog.io/artifactory/main/release/1.85.0/source/boost_1_85_0.tar.bz2 || exit 1
tar xf boost_1_76_0.tar.bz2 || exit 1 tar xf boost_1_85_0.tar.bz2 || exit 1
cd boost_1_76_0 cd boost_1_85_0
./bootstrap.sh || exit 1 ./bootstrap.sh || exit 1
build() build()

View File

@ -27,7 +27,7 @@ jobs:
uses: actions/cache@v1 uses: actions/cache@v1
with: with:
path: ~/boost-prefix/ path: ~/boost-prefix/
key: ${{ runner.os }}-boost-64-1-76-0-2021-08-09 key: ${{ runner.os }}-boost-1-85-0-2024-05-27
- name: Build boost - name: Build boost
if: steps.cache-boost.outputs.cache-hit != 'true' if: steps.cache-boost.outputs.cache-hit != 'true'

View File

@ -18,14 +18,18 @@ jobs:
matrix: matrix:
pattern: [0, 1, 2, 3, 4] pattern: [0, 1, 2, 3, 4]
steps: steps:
- uses: actions/checkout@v2 - name: Checkout
uses: actions/checkout@v3
- name: Install Dependencies
brew update
brew install --force llvm
- name: Cache boost - name: Cache boost
id: cache-boost id: cache-boost
uses: actions/cache@v2 uses: actions/cache@v3
with: with:
path: ~/boost-prefix/ path: ~/boost-prefix/
key: ${{ runner.os }}-boost-1-76-0-2022-08-09 key: ${{ runner.os }}-boost-1-85-0-2024-05-27
- name: Build boost - name: Build boost
if: steps.cache-boost.outputs.cache-hit != 'true' if: steps.cache-boost.outputs.cache-hit != 'true'
@ -33,7 +37,7 @@ jobs:
- name: Cache zlib - name: Cache zlib
id: cache-zlib id: cache-zlib
uses: actions/cache@v2 uses: actions/cache@v3
with: with:
path: ~/zlib-prefix/ path: ~/zlib-prefix/
key: ${{ runner.os }}-zlib-1-2-13-2022-11-02 key: ${{ runner.os }}-zlib-1-2-13-2022-11-02
@ -85,7 +89,7 @@ jobs:
matrix: matrix:
pattern: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] pattern: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Install build dependencies - name: Install build dependencies
shell: bash shell: bash
@ -97,10 +101,10 @@ jobs:
- name: Cache boost - name: Cache boost
id: cache-boost id: cache-boost
uses: actions/cache@v2 uses: actions/cache@v3
with: with:
path: ~/boost-prefix/ path: ~/boost-prefix/
key: ${{ runner.os }}-boost-1-76-0-2021-08-09 key: ${{ runner.os }}-boost-1-85-0-2024-05-27
- name: Build boost - name: Build boost
if: steps.cache-boost.outputs.cache-hit != 'true' if: steps.cache-boost.outputs.cache-hit != 'true'
@ -108,7 +112,7 @@ jobs:
- name: Cache zlib - name: Cache zlib
id: cache-zlib id: cache-zlib
uses: actions/cache@v2 uses: actions/cache@v3
with: with:
path: ~/zlib-prefix/ path: ~/zlib-prefix/
key: ${{ runner.os }}-zlib-1-2-13-2022-11-02 key: ${{ runner.os }}-zlib-1-2-13-2022-11-02
@ -198,11 +202,11 @@ jobs:
cxx: [14, 17, 20] cxx: [14, 17, 20]
pp_flag: ["/Zc:preprocessor-", "/Zc:preprocessor"] pp_flag: ["/Zc:preprocessor-", "/Zc:preprocessor"]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Cache vcpkg dependencies - name: Cache vcpkg dependencies
id: cache-vcpkg id: cache-vcpkg
uses: actions/cache@v2 uses: actions/cache@v3
with: with:
path: C:/vcpkg/installed/x64-windows path: C:/vcpkg/installed/x64-windows
key: ${{ runner.os }}-vcpkg-2021-08-09 key: ${{ runner.os }}-vcpkg-2021-08-09