From 1d09f8daf8fb467f8e5ec71bcefa77f6c45e7295 Mon Sep 17 00:00:00 2001 From: Jonathan Dieter Date: Thu, 2 Aug 2018 14:29:05 +0100 Subject: [PATCH] Fix Debian autotest to use meson and libzstd in backports Signed-off-by: Jonathan Dieter --- autotest/debian-latest/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.30.2