This is an automated email from the ASF dual-hosted git repository. juergbi pushed a commit to branch juerg/ci in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 71152afeb0037293b2a2bce8139e40e2d646c5ed Author: Jürg Billeter <[email protected]> AuthorDate: Sat Apr 16 11:54:32 2022 +0200 .github: Switch back to Ubuntu 20.04 runners The kernel bug breaking buildbox-fuse in Ubuntu 20.04.3 with Linux 5.11 has been fixed in Ubuntu 20.04.4 with Linux 5.13. https://github.com/actions/virtual-environments/pull/5314 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/merge.yml | 4 ++-- .github/workflows/release.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 583ba2af9..7e8bee7d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ concurrency: jobs: tests: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 continue-on-error: ${{ matrix.allow-failure || false }} strategy: @@ -60,7 +60,7 @@ jobs: # Matrix of tests which run against remote services which we bring up adjacently service-tests: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 strategy: matrix: @@ -84,7 +84,7 @@ jobs: ${GITHUB_WORKSPACE}/.github/run-ci.sh --service ${{ matrix.test-name }} docs: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - name: Check out repository uses: actions/checkout@v2 diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index e221ce4bf..330c45758 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -8,7 +8,7 @@ on: jobs: build: name: Build documentation - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - name: Checkout code uses: actions/checkout@v2 @@ -44,7 +44,7 @@ jobs: publish: needs: build - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - name: Download artifact diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 36f54c3ed..55dfe860a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ on: jobs: build: name: Upload Release Asset - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - name: Checkout code uses: actions/checkout@v2
