This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/buildstream-plugins.git
commit 2ca29ca42b1bdb83ae387a84badd31fd7a5ccfe4 Author: Tristan van Berkom <[email protected]> AuthorDate: Thu Mar 31 16:07:52 2022 +0900 .github/worflows: Use ubuntu 18.04 instead of 20.04 This host vm/kernel apparently doesnt break when running buildstream. --- .github/workflows/ci.yml | 4 ++-- .github/workflows/merge.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7017a26..4b78f21 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ concurrency: jobs: tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-18.04 continue-on-error: ${{ matrix.allow-failure || false }} strategy: @@ -59,7 +59,7 @@ jobs: ${GITHUB_WORKSPACE}/.github/run-ci.sh ${{ matrix.test-name }} docs: - runs-on: ubuntu-20.04 + runs-on: ubuntu-18.04 steps: - name: Check out repository uses: actions/checkout@v2 diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 8bb492e..0921a0f 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -8,7 +8,7 @@ on: jobs: build: name: Build documentation - runs-on: ubuntu-20.04 + runs-on: ubuntu-18.04 steps: - name: Checkout code uses: actions/checkout@v2 @@ -40,7 +40,7 @@ jobs: publish: needs: build - runs-on: ubuntu-20.04 + runs-on: ubuntu-18.04 steps: - name: Download artifact
