From d49681447e912a8c9270635dad674b7b10f46384 Mon Sep 17 00:00:00 2001 From: jo Date: Mon, 28 Mar 2022 17:43:09 +0200 Subject: [PATCH] ci: use ppa in all ubuntu distributions --- .github/workflows/tools.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index e1294cd16..5e9163870 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -54,16 +54,16 @@ jobs: COPY packages.list packages.list EOF - [[ "${{ matrix.release }}" == "bionic" ]] && \ + [[ "${{ matrix.distribution }}" == "ubuntu" ]] && \ cat <> Dockerfile - RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common && \ + RUN DEBIAN_FRONTEND=noninteractive apt-get --quiet update && \ + DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y software-properties-common && \ add-apt-repository -y ppa:libretime/libretime EOF cat <> Dockerfile - RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get -y install \ + RUN DEBIAN_FRONTEND=noninteractive apt-get --quiet update && \ + DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y \ git \ python3 \ python3-pip \