From 406c0b17ae6697954287085bbedef7e61e3af271 Mon Sep 17 00:00:00 2001 From: ebbit1q Date: Fri, 26 Mar 2021 03:36:01 +0100 Subject: [PATCH] remove arch workaround (#4295) --- .github/workflows/ci-builds.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/ci-builds.yml b/.github/workflows/ci-builds.yml index b421ea2e..9ed4e962 100644 --- a/.github/workflows/ci-builds.yml +++ b/.github/workflows/ci-builds.yml @@ -136,14 +136,7 @@ jobs: - name: Build ${{matrix.distro}} Docker image shell: bash - 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 + run: source .ci/docker.sh --build - name: Build debug and test if: matrix.test != 'skip'