From 89a30e4c4998f06ed99357887da5bc89a6aa96a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Garc=C3=A9s?= Date: Sat, 14 May 2022 16:04:23 +0000 Subject: [PATCH] GCC 11.2 needed for kernel>=5.17. Updated Ubuntu Removed workaround for libc6 (already on 22.04 LTS). --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d06be52..9c5c052 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,6 @@ jobs: build: needs: commontasks - runs-on: ubuntu-latest strategy: fail-fast: false matrix: @@ -37,6 +36,7 @@ jobs: version: $(uname -r) use_apt: true + runs-on: ubuntu-22.04 steps: - name: install deb packages env: @@ -51,7 +51,6 @@ jobs: [ -z "$AMD64_DEB" ] && exit 2 wget -nv ${KERNEL_URL}v${VERSION}/$AMD64_DEB wget -nv ${KERNEL_URL}v${VERSION}/$ALL_DEB - wget -nv http://mirrors.edge.kernel.org/ubuntu/pool/main/g/glibc/libc6_2.34-0ubuntu3_amd64.deb sudo dpkg --force-all -i *.deb echo "KVER=$(echo $ALL_DEB | cut -d '_' -f 2 | rev | cut -c14- | rev)-generic" >> $GITHUB_ENV - name: apt-linux-headers