ci: use ppa in all ubuntu distributions

This commit is contained in:
jo 2022-03-28 17:43:09 +02:00 committed by Kyle Robbertze
parent 4f14be8ca0
commit d49681447e
1 changed files with 5 additions and 5 deletions

View File

@ -54,16 +54,16 @@ jobs:
COPY packages.list packages.list
EOF
[[ "${{ matrix.release }}" == "bionic" ]] && \
[[ "${{ matrix.distribution }}" == "ubuntu" ]] && \
cat <<EOF >> 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 <<EOF >> 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 \