From 4aba7e901e60d168bdb32ab37e9f281f551d47d3 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Mon, 3 Jan 2022 15:44:36 -0500 Subject: [PATCH] [libc++][CI] Don't install libc6-dev-i386 in the Docker image We don't cross-compile to 32 bits in the CI anymore. --- libcxx/utils/ci/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile index 1aeeeb7..034fe7b 100644 --- a/libcxx/utils/ci/Dockerfile +++ b/libcxx/utils/ci/Dockerfile @@ -43,7 +43,6 @@ RUN apt-get update && apt-get install -y bash curl # Install various tools used by the build or the test suite RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils git gdb -RUN apt-get update && apt-get install -y libc6-dev-i386 # Required to cross-compile to 32 bits # Locales for gdb and localization tests RUN apt-get update && apt-get install -y language-pack-en language-pack-fr \ -- 2.7.4