From 144816105f7e790d61963d45a17f728b3b0c10ee Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 27 Aug 2021 23:29:41 +0200 Subject: [PATCH] Make apt even quieter Even "-qq" is insufficient to suppress the annoying, and useless for non-interactive use, "Reading database ... NN%" output, so add the option suppressing it to all apt commands. Also use "-y" as a single "-q" is not enough to suppress the prompts. --- .github/workflows/ci_msw_cross.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_msw_cross.yml b/.github/workflows/ci_msw_cross.yml index a96459ba0b..c27e062363 100644 --- a/.github/workflows/ci_msw_cross.yml +++ b/.github/workflows/ci_msw_cross.yml @@ -83,7 +83,7 @@ jobs: shell: bash run: | apt-get -q -o=Dpkg::Use-Pty=0 update - apt-get -qq install sudo + apt-get -q -o=Dpkg::Use-Pty=0 -y install sudo # Create a user with the same UID/GID and name as the existing user # outside of the container and allow it using sudo without password. @@ -114,7 +114,7 @@ jobs: ;; esac - sudo DEBIAN_FRONTEND=noninteractive apt-get -qq install $packages + sudo DEBIAN_FRONTEND=noninteractive apt-get -q -o=Dpkg::Use-Pty=0 -y install $packages echo "wxTEST_RUNNER=${winerun}" >> $GITHUB_ENV