From 034172e8e5865b7c1b8f07d810dd53dd4e3c55f7 Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Mon, 13 Jan 2025 10:19:34 -0700 Subject: [PATCH] github: Revert to Ubuntu 22.04 (from latest) for cgroup v2 testing Cgroup v2 testing on Ubuntu 24.04 is throwing the following errors. Revert to Ubuntu 22.04 until the issue is resolved in the distro. /home/runner/work/libcgroup/libcgroup/src/.libs/libcgroup.so.0) Test: 012-cgget-multiple_r_flags2.py - RunError: command = ['sudo', 'lxc', 'exec', 'TestLibcg', '--', '/home/runner/work/libcgroup/libcgroup/src/tools/cgcreate', '-g', 'memory:012cgget1'] ret = 1 stdout = stderr = /home/runner/work/libcgroup/libcgroup/src/tools/.libs/cgcreate: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.38' not found (required by /home/runner/work/libcgroup/libcgroup/src/tools/.libs/cgcreate) /home/runner/work/libcgroup/libcgroup/src/tools/.libs/cgcreate: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.38' not found (required by /home/runner/work/libcgroup/libcgroup/src/.libs/libcgroup.so.0) Signed-off-by: Tom Hromatka --- .github/workflows/continuous-integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 2b03e78c..2c22d71d 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -151,7 +151,7 @@ jobs: distcheckv2: name: Cgroup v2 Dist Check - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Install container dependencies @@ -374,7 +374,7 @@ jobs: functionaltestsv2: name: Cgroup v2 Functional Tests - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Install container dependencies -- 2.47.3