From e09faa6cc57a59193d8b508a4fef9b526d42b2ec Mon Sep 17 00:00:00 2001 From: Jesse Mapel Date: Tue, 2 Feb 2021 09:12:54 -0700 Subject: [PATCH] Disabled immediate config on Linux CI libc6-dbg (#188) Taken from an issue on the Docker for linux repo and a few other places: https://github.com/docker/for-linux/issues/1131 Ubuntu bug report also seems to indicate this is safe: https://bugs.launchpad.net/ubuntu-cdimage/+bug/1871268 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f1a759..c5909c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -189,7 +189,7 @@ jobs: sudo apt-get update # libc6-dbg:i386 is required for running valgrind on x86. - sudo apt-get install -y ninja-build valgrind libc6-dbg:i386 + sudo apt-get install -y ninja-build valgrind libc6-dbg:i386 -o APT::Immediate-Configure=0 if [ "${{ matrix.compiler }}" = "gcc" ]; then sudo apt-get install -y g++-${{ matrix.version }} g++-${{ matrix.version }}-multilib echo "CC=gcc-${{ matrix.version }}" >> $GITHUB_ENV