From 18e27ef9323b7257fe8aad8820e88c751295041f Mon Sep 17 00:00:00 2001 From: ebbit1q Date: Mon, 8 Mar 2021 18:18:58 +0100 Subject: [PATCH] temporary workaround for arch libc version requiring upgraded host (#4258) see https://bugs.archlinux.org/task/69563#comment196582 --- .github/workflows/ci-builds.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-builds.yml b/.github/workflows/ci-builds.yml index 7b6af058e..ce573e1b1 100644 --- a/.github/workflows/ci-builds.yml +++ b/.github/workflows/ci-builds.yml @@ -80,13 +80,7 @@ jobs: strategy: fail-fast: false matrix: - distro: # these names correspond to the files in .ci/$distro - - UbuntuGroovy - - UbuntuFocal - - UbuntuBionic - - ArchLinux - - DebianBuster - - Fedora33 + # these names correspond to the files in .ci/$distro include: - distro: UbuntuGroovy package: DEB @@ -142,7 +136,14 @@ jobs: - name: Build ${{matrix.distro}} Docker image shell: bash - run: source .ci/docker.sh --build + run: | + # temporary workaround for arch libc version requiring upgraded host + # see https://bugs.archlinux.org/task/69563#comment196582 + if [[ $NAME == ArchLinux ]]; then + wget http://ftp.us.debian.org/debian/pool/main/r/runc/runc_1.0.0~rc93+ds1-2_amd64.deb + sudo dpkg -i --force-conflicts runc*.deb + fi + source .ci/docker.sh --build - name: Build debug and test if: matrix.test != 'skip'