From 95afede8a05123c956805be284b0d9c71f307f2f Mon Sep 17 00:00:00 2001 From: Christian Blichmann Date: Thu, 9 Jun 2022 02:03:07 -0700 Subject: [PATCH] GitHub Actions: Add Ubuntu 22.04 builds Ubuntu 22.04 is an LTS version, so we should add it. This change set `ignore-errors = true`, as the corresponding build environment is still in beta on GitHub. PiperOrigin-RevId: 453868434 Change-Id: I988e38cda30deedd0704314f21a1f4c33c1456a0 --- .github/workflows/ubuntu-cmake.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ubuntu-cmake.yml b/.github/workflows/ubuntu-cmake.yml index afa9667..7aebb03 100644 --- a/.github/workflows/ubuntu-cmake.yml +++ b/.github/workflows/ubuntu-cmake.yml @@ -11,6 +11,16 @@ jobs: fail-fast: false matrix: include: + - os: ubuntu-22.04 + compiler: clang + compiler-version: 11 + # Ubuntu 22.04 is in beta + ignore-errors: true + - os: ubuntu-22.04 + compiler: gcc + compiler-version: 11 + # Ubuntu 22.04 is in beta + ignore-errors: true - os: ubuntu-20.04 compiler: clang compiler-version: 11