From 8846dc7a2062699d3a2ac7df42aecc2cbd66e558 Mon Sep 17 00:00:00 2001 From: Andrii Nakryiko Date: Mon, 5 Dec 2022 11:33:47 -0800 Subject: [PATCH] ci: fix Ubuntu version for kernel tests and pahole workflows Having too new build environment in workflows that build selftests on the host, but run them in a separate QEMU image can lead to problems with runtime linker complaining about missing new enough version of glibc and other dependencies. Until we update images, fix used Ubuntu version to ubuntu-20.04 to mitigate. Suggested-by: Manu Bretelle Signed-off-by: Andrii Nakryiko --- .github/workflows/pahole.yml | 2 +- .github/workflows/test.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pahole.yml b/.github/workflows/pahole.yml index 62a365d..37840ff 100644 --- a/.github/workflows/pahole.yml +++ b/.github/workflows/pahole.yml @@ -7,7 +7,7 @@ on: jobs: vmtest: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 name: Kernel LATEST + staging pahole env: STAGING: tmp.master diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4d723e3..1e7224c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,13 +19,13 @@ jobs: matrix: include: - kernel: 'LATEST' - runs_on: ubuntu-latest + runs_on: ubuntu-20.04 arch: 'x86_64' - kernel: '5.5.0' - runs_on: ubuntu-latest + runs_on: ubuntu-20.04 arch: 'x86_64' - kernel: '4.9.0' - runs_on: ubuntu-latest + runs_on: ubuntu-20.04 arch: 'x86_64' - kernel: 'LATEST' runs_on: s390x