diff --git a/.gitlab-ci/container/cross_build.sh b/.gitlab-ci/container/cross_build.sh index e5db3a0f41d..f0a27b4ee0f 100644 --- a/.gitlab-ci/container/cross_build.sh +++ b/.gitlab-ci/container/cross_build.sh @@ -48,7 +48,7 @@ if [[ $arch != "armhf" ]]; then # llvm-*-tools:$arch conflicts with python3:amd64. Install dependencies only # with apt-get, then force-install llvm-*-{dev,tools}:$arch with dpkg to get # around this. - apt-get install -y --no-remove \ + apt-get install -y --no-remove --no-install-recommends \ libclang-cpp${LLVM}:$arch \ libffi-dev:$arch \ libgcc-s1:$arch \ diff --git a/.gitlab-ci/container/debian/x86_test-vk.sh b/.gitlab-ci/container/debian/x86_test-vk.sh index 3922bcc76b8..1b55af81c7b 100644 --- a/.gitlab-ci/container/debian/x86_test-vk.sh +++ b/.gitlab-ci/container/debian/x86_test-vk.sh @@ -50,7 +50,7 @@ STABLE_EPHEMERAL=" \ xz-utils \ " -apt-get install -y --no-remove \ +apt-get install -y --no-remove --no-install-recommends \ $STABLE_EPHEMERAL \ libepoxy0 \ libxcb-shm0 \