ci: use ppa in all ubuntu distributions
This commit is contained in:
parent
4f14be8ca0
commit
d49681447e
|
@ -54,16 +54,16 @@ jobs:
|
||||||
COPY packages.list packages.list
|
COPY packages.list packages.list
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
[[ "${{ matrix.release }}" == "bionic" ]] && \
|
[[ "${{ matrix.distribution }}" == "ubuntu" ]] && \
|
||||||
cat <<EOF >> Dockerfile
|
cat <<EOF >> Dockerfile
|
||||||
RUN apt-get update && \
|
RUN DEBIAN_FRONTEND=noninteractive apt-get --quiet update && \
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common && \
|
DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y software-properties-common && \
|
||||||
add-apt-repository -y ppa:libretime/libretime
|
add-apt-repository -y ppa:libretime/libretime
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat <<EOF >> Dockerfile
|
cat <<EOF >> Dockerfile
|
||||||
RUN apt-get update && \
|
RUN DEBIAN_FRONTEND=noninteractive apt-get --quiet update && \
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get -y install \
|
DEBIAN_FRONTEND=noninteractive apt-get --quiet install -y \
|
||||||
git \
|
git \
|
||||||
python3 \
|
python3 \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
|
|
Loading…
Reference in New Issue