From 908f345e229743f063bfa1bdfd3a67a7f307be5f Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Wed, 10 Aug 2022 21:47:33 +0800 Subject: [PATCH 1/2] GHA CI: switch to Ubuntu latest stable version --- .github/workflows/ci_ubuntu.yaml | 4 ++-- .github/workflows/coverity-scan.yml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_ubuntu.yaml b/.github/workflows/ci_ubuntu.yaml index 53da82a39..fb1d3b2f8 100644 --- a/.github/workflows/ci_ubuntu.yaml +++ b/.github/workflows/ci_ubuntu.yaml @@ -9,7 +9,7 @@ concurrency: jobs: ci: name: Build - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: fail-fast: false @@ -107,5 +107,5 @@ jobs: - name: Upload build artifacts uses: actions/upload-artifact@v3 with: - name: build-info_ubuntu-20.04-x64_${{ matrix.qbt_gui }}_libtorrent-${{ matrix.libt_version }}_Qt-${{ matrix.qt_version }} + name: build-info_ubuntu-x64_${{ matrix.qbt_gui }}_libtorrent-${{ matrix.libt_version }}_Qt-${{ matrix.qt_version }} path: upload diff --git a/.github/workflows/coverity-scan.yml b/.github/workflows/coverity-scan.yml index 16e19e48d..09c0afcbd 100644 --- a/.github/workflows/coverity-scan.yml +++ b/.github/workflows/coverity-scan.yml @@ -8,7 +8,8 @@ on: jobs: coverity_scan: name: Scan - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest + steps: - name: Checkout repository uses: actions/checkout@v3 From c924fe79507d9cfaa7d673c52db991f8c52e48ae Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Thu, 11 Aug 2022 15:20:25 +0800 Subject: [PATCH 2/2] GHA CI: update boost to 1.80 --- .github/workflows/ci_macos.yaml | 2 +- .github/workflows/ci_windows.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_macos.yaml b/.github/workflows/ci_macos.yaml index 1725decc1..793be7497 100644 --- a/.github/workflows/ci_macos.yaml +++ b/.github/workflows/ci_macos.yaml @@ -46,7 +46,7 @@ jobs: curl \ -L \ -o "${{ runner.temp }}/boost.tar.bz2" \ - "https://boostorg.jfrog.io/artifactory/main/release/1.79.0/source/boost_1_79_0.tar.bz2" + "https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.bz2" tar -xf "${{ runner.temp }}/boost.tar.bz2" -C "${{ github.workspace }}/.." mv "${{ github.workspace }}/.."/boost_* "${{ env.boost_path }}" diff --git a/.github/workflows/ci_windows.yaml b/.github/workflows/ci_windows.yaml index dab49c5a3..e68898fc9 100644 --- a/.github/workflows/ci_windows.yaml +++ b/.github/workflows/ci_windows.yaml @@ -67,7 +67,7 @@ jobs: - name: Install boost run: | aria2c ` - "https://boostorg.jfrog.io/artifactory/main/release/1.79.0/source/boost_1_79_0.7z" ` + "https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.7z" ` -d "${{ runner.temp }}" ` -o "boost.7z" 7z x "${{ runner.temp }}/boost.7z" -o"${{ github.workspace }}/.."