This is an automated email from the ASF dual-hosted git repository. akitouni pushed a commit to branch abderrahim/test-ubuntu in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 72248f2150136914e80e36194493da0abfd3c81e Author: Abderrahim Kitouni <[email protected]> AuthorDate: Mon Mar 28 09:01:43 2022 +0100 .github/workflow: run tests using ubuntu 18.04 Ubuntu 20.04 seems to have a kernel bug making tests that use buildbox-fuse hang. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e8bee7..583ba2a 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: @@ -60,7 +60,7 @@ jobs: # Matrix of tests which run against remote services which we bring up adjacently service-tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-18.04 strategy: matrix: @@ -84,7 +84,7 @@ jobs: ${GITHUB_WORKSPACE}/.github/run-ci.sh --service ${{ matrix.test-name }} docs: - runs-on: ubuntu-20.04 + runs-on: ubuntu-18.04 steps: - name: Check out repository uses: actions/checkout@v2
