From 0a967cd26ab1ebe317b460864738f7a5f5e8b40c Mon Sep 17 00:00:00 2001 From: Dirk Farin Date: Mon, 20 Nov 2023 18:25:54 +0100 Subject: [PATCH] show held packages to debug CI --- scripts/ci-before-install-linux.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/ci-before-install-linux.sh b/scripts/ci-before-install-linux.sh index a2e11978..72c567e9 100755 --- a/scripts/ci-before-install-linux.sh +++ b/scripts/ci-before-install-linux.sh @@ -96,7 +96,10 @@ if [ ! -z "$UPDATE_APT" ]; then fi if [ ! -z "$INSTALL_PACKAGES" ]; then - echo "Installing packages $INSTALL_PACKAGES ..." + echo "Held packages:" + sudo dpkg --get-selections | grep hold + + echo "Installing packages $INSTALL_PACKAGES" sudo apt-get install -qq $INSTALL_PACKAGES fi