ref: 7cbee82335800f3b82c9db096ed6fae66129e22d
parent: 846c3bf8415c2b59012e496f69031f1aa023c67e
author: Ralph Giles <giles@thaumas.net>
date: Wed Jul 2 21:14:56 EDT 2025
github actions: Run compat test on ubuntu 22.04 The `CMakeVersionTest` job tests building with a fresh install of cmake v3.16 from upstream on github's ubuntu 20.04-based runner image. With the 20.04 LTS release now in extended support, github no longer provides this image and the test was not running. Instead, try running the backward-compatible test on the ubuntu 22.04-based image. Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -8,7 +8,7 @@
jobs:
CMakeVersionTest:
name: Test build with CMake 3.16.0
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
--
⑨