From 885ff36b01e777f83baaf02c945762390704a242 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Wed, 5 May 2021 11:45:59 +0000 Subject: [PATCH] Don't install recommended packages in Debian's CI --- CI/install_debian_deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CI/install_debian_deps.sh b/CI/install_debian_deps.sh index 490fad0da..2f905314b 100755 --- a/CI/install_debian_deps.sh +++ b/CI/install_debian_deps.sh @@ -22,12 +22,12 @@ declare -rA GROUPED_DEPS=( libavcodec-dev libavformat-dev libavutil-dev libswscale-dev libswresample-dev libsdl2-dev libqt5opengl5-dev libopenal-dev libunshield-dev libtinyxml-dev libbullet-dev liblz4-dev libpng-dev libjpeg-dev + ca-certificates " # TODO: add librecastnavigation-dev when debian is ready # These dependencies can alternatively be built and linked statically. [openmw-deps-dynamic]="libmygui-dev libopenscenegraph-dev" - [coverity]="curl" # Pre-requisites for building MyGUI and OSG for static linking. @@ -64,4 +64,4 @@ export APT_CACHE_DIR="${PWD}/apt-cache" set -x mkdir -pv "$APT_CACHE_DIR" apt-get update -yq -apt-get -q -o dir::cache::archives="$APT_CACHE_DIR" install -y "${deps[@]}" +apt-get -q -o dir::cache::archives="$APT_CACHE_DIR" install -y --no-install-recommends "${deps[@]}"