This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch tristan/workaround-broken-ci in repository https://gitbox.apache.org/repos/asf/buildstream-plugins.git
commit dc2262c73a76cd9286a076599f5d291047806be7 Author: Tristan van Berkom <[email protected]> AuthorDate: Wed Dec 4 01:32:51 2024 +0900 CI: Use ubuntu 20.04 This is a workaround for https://issues.apache.org/jira/browse/INFRA-26331 As outlined here: https://etbe.coker.com.au/2024/04/24/ubuntu-24-04-bubblewrap/ Bubblewrap is not working on ubuntu 24 without some adjustments. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c20bb57..51a3aec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ concurrency: jobs: tests: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 continue-on-error: ${{ matrix.allow-failure || false }} strategy:
