From: Jonathan Dieter Date: Thu, 2 Aug 2018 13:29:05 +0000 (+0100) Subject: Fix Debian autotest to use meson and libzstd in backports X-Git-Tag: archive/raspbian/1.1.9+ds1-1+rpi1~1^2~134 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1d09f8daf8fb467f8e5ec71bcefa77f6c45e7295;p=zchunk.git Fix Debian autotest to use meson and libzstd in backports Signed-off-by: Jonathan Dieter --- diff --git a/autotest/debian-latest/Dockerfile b/autotest/debian-latest/Dockerfile index 02a4adb..149a9d9 100644 --- a/autotest/debian-latest/Dockerfile +++ b/autotest/debian-latest/Dockerfile @@ -1,7 +1,10 @@ FROM debian:latest ADD ./ /code WORKDIR /code +RUN /bin/bash -c 'echo deb http://ftp.debian.org/debian stretch-backports main >> /etc/apt/sources.list' RUN apt-get update -RUN /bin/bash -c 'export DEBIAN_FRONTEND=noninteractive; apt-get -yq install meson gcc pkg-config libzstd-dev libcurl4-openssl-dev libssl-dev' +RUN cat /etc/apt/sources.list +RUN /bin/bash -c 'export DEBIAN_FRONTEND=noninteractive; apt-get -yqt stretch-backports install meson libzstd-dev' +RUN /bin/bash -c 'export DEBIAN_FRONTEND=noninteractive; apt-get -yq install gcc pkg-config libcurl4-openssl-dev libssl-dev' RUN meson build RUN ninja -C build test