diff --git a/.github/workflows/ci_macos.yaml b/.github/workflows/ci_macos.yaml index ac5437047..92de87827 100644 --- a/.github/workflows/ci_macos.yaml +++ b/.github/workflows/ci_macos.yaml @@ -52,9 +52,9 @@ jobs: run: | curl \ -L \ - -o "${{ runner.temp }}/boost.tar.bz2" \ - "https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.tar.bz2" - tar -xf "${{ runner.temp }}/boost.tar.bz2" -C "${{ github.workspace }}/.." + -o "${{ runner.temp }}/boost.tar.gz" \ + "https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.tar.gz" + tar -xf "${{ runner.temp }}/boost.tar.gz" -C "${{ github.workspace }}/.." mv "${{ github.workspace }}/.."/boost_* "${{ env.boost_path }}" - name: Install Qt diff --git a/.github/workflows/ci_ubuntu.yaml b/.github/workflows/ci_ubuntu.yaml index 4fda7a2e3..64f9bac58 100644 --- a/.github/workflows/ci_ubuntu.yaml +++ b/.github/workflows/ci_ubuntu.yaml @@ -48,9 +48,9 @@ jobs: run: | curl \ -L \ - -o "${{ runner.temp }}/boost.tar.bz2" \ - "https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2" - tar -xf "${{ runner.temp }}/boost.tar.bz2" -C "${{ github.workspace }}/.." + -o "${{ runner.temp }}/boost.tar.gz" \ + "https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.gz" + tar -xf "${{ runner.temp }}/boost.tar.gz" -C "${{ github.workspace }}/.." mv "${{ github.workspace }}/.."/boost_* "${{ env.boost_path }}" - name: Install Qt diff --git a/.github/workflows/ci_windows.yaml b/.github/workflows/ci_windows.yaml index ea64e42c5..0f61d2715 100644 --- a/.github/workflows/ci_windows.yaml +++ b/.github/workflows/ci_windows.yaml @@ -56,11 +56,11 @@ jobs: - name: Install boost run: | - aria2c ` - "https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.7z" ` - -d "${{ runner.temp }}" ` - -o "boost.7z" - 7z x "${{ runner.temp }}/boost.7z" -o"${{ github.workspace }}/.." + curl ` + -L ` + -o "${{ runner.temp }}/boost.tar.gz" ` + "https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.tar.gz" + tar -xf "${{ runner.temp }}/boost.tar.gz" -C "${{ github.workspace }}/.." move "${{ github.workspace }}/../boost_*" "${{ env.boost_path }}" - name: Install Qt