Skip to content

Commit

Permalink
ci: disable progress output from apt-get
Browse files Browse the repository at this point in the history
  • Loading branch information
zeha committed Nov 18, 2023
1 parent 75f5c29 commit 84a613c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/build-vm-and-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fi
if [ "$1" == "setup" ]; then
[ -x ./tests/goss ] || curl -fsSL https://goss.rocks/install | GOSS_DST="$(pwd)/tests" sh
sudo apt-get update
sudo apt-get -y install qemu-system-x86 kpartx python3-pexpect python3-serial
sudo apt-get -qq -y install qemu-system-x86 kpartx python3-pexpect python3-serial
# TODO: docker.io
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion tests/docker-build-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if [ -z "$BUILD_NUMBER" ]; then
fi

apt-get update
apt-get install --no-install-recommends -y build-essential devscripts equivs
apt-get install -qq -y --no-install-recommends build-essential devscripts equivs

SOURCEDIR=$PWD

Expand Down
2 changes: 1 addition & 1 deletion tests/docker-build-vm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ TARGET="$2"
RELEASE="$3"

if [ -n "${DEBOOTSTRAP:-}" ] && [ "${DEBOOTSTRAP:-}" != "debootstrap" ]; then
apt-get install -y "${DEBOOTSTRAP}"
apt-get install -qq -y "${DEBOOTSTRAP}"
fi

set -x
Expand Down
4 changes: 2 additions & 2 deletions tests/docker-install-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ DEB_NAME="$1"

apt-get update
# docker images can be relatively old, especially for unstable.
apt-get -y upgrade
apt-get -y install "$DEB_NAME"
apt-get upgrade -qq -y
apt-get install -qq -y "$DEB_NAME"

0 comments on commit 84a613c

Please sign in to comment.