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
This commit is contained in:
Jesse Mapel
2021-02-02 09:12:54 -07:00
committed by GitHub
parent 15b0b7f5e3
commit e09faa6cc5

View File

@@ -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