From 942b3016e4bc2a871ccd31ffc07ff42720723463 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 24 Dec 2021 16:27:38 +0000 Subject: [PATCH] Update Boost to v1.78.0 --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/release.yml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aafc8570..a8067031 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,8 +89,8 @@ jobs: - name: Download Boost run: | - wget https://boostorg.jfrog.io/artifactory/main/release//1.72.0/source/boost_1_72_0.tar.gz - tar -xf boost_1_72_0.tar.gz + wget https://boostorg.jfrog.io/artifactory/main/release//1.78.0/source/boost_1_78_0.tar.gz + tar -xf boost_1_78_0.tar.gz - name: Install APT package dependencies run: | @@ -112,7 +112,7 @@ jobs: mkdir build cd build export CXX="g++-8" CC="gcc-8" - cmake .. -DBOOST_ROOT="boost_1_72_0" -DCPACK_PACKAGE_VERSION="${{ steps.get-libloot-version.outputs.version }}" + cmake .. -DBOOST_ROOT="boost_1_78_0" -DCPACK_PACKAGE_VERSION="${{ steps.get-libloot-version.outputs.version }}" make all - name: Run tests @@ -178,8 +178,8 @@ jobs: - name: Download Boost run: | - curl -sSfLO https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.7z - 7z x boost_1_72_0.7z + curl -sSfLO https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.7z + 7z x boost_1_78_0.7z - name: Get descriptive libloot version id: get-libloot-version @@ -194,7 +194,7 @@ jobs: run: | mkdir build cd build - cmake .. -G "Visual Studio 15 2017" -A ${{ matrix.platform }} -DBOOST_ROOT="boost_1_72_0" -DCPACK_PACKAGE_VERSION="${{ steps.get-libloot-version.outputs.version }}" + cmake .. -G "Visual Studio 15 2017" -A ${{ matrix.platform }} -DBOOST_ROOT="boost_1_78_0" -DCPACK_PACKAGE_VERSION="${{ steps.get-libloot-version.outputs.version }}" cmake --build . --config ${{ env.MSVC_CONFIG }} - name: Run tests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 34e91b5f..23058284 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,8 +65,8 @@ jobs: - name: Download Boost run: | - wget https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.gz - tar -xf boost_1_72_0.tar.gz + wget https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.tar.gz + tar -xf boost_1_78_0.tar.gz - name: Install APT package dependencies run: | @@ -88,7 +88,7 @@ jobs: mkdir build cd build export CXX="g++-8" CC="gcc-8" - cmake .. -DBOOST_ROOT="boost_1_72_0" -DCPACK_PACKAGE_VERSION="${{ steps.get-libloot-version.outputs.version }}" + cmake .. -DBOOST_ROOT="boost_1_78_0" -DCPACK_PACKAGE_VERSION="${{ steps.get-libloot-version.outputs.version }}" make all - name: Run tests @@ -159,8 +159,8 @@ jobs: - name: Download Boost run: | - curl -sSfLO https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.7z - 7z x boost_1_72_0.7z + curl -sSfLO https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.7z + 7z x boost_1_78_0.7z - name: Get descriptive libloot version id: get-libloot-version @@ -175,7 +175,7 @@ jobs: run: | mkdir build cd build - cmake .. -G "Visual Studio 15 2017" -A ${{ matrix.platform }} -DBOOST_ROOT="boost_1_72_0" -DCPACK_PACKAGE_VERSION="${{ steps.get-libloot-version.outputs.version }}" + cmake .. -G "Visual Studio 15 2017" -A ${{ matrix.platform }} -DBOOST_ROOT="boost_1_78_0" -DCPACK_PACKAGE_VERSION="${{ steps.get-libloot-version.outputs.version }}" cmake --build . --config ${{ env.MSVC_CONFIG }} - uses: actions/setup-python@v2