From d840681707287df9a06bb427caab065b2e50515d Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Mon, 16 Mar 2020 16:43:57 -0700 Subject: [PATCH] .gitlab-ci.yml: Switch from Stretch to Buster Stretch is old-stable and will reach end of life this year. buster-backports has newer Meson available, so switching to Buster will allow us to bump the Meson requirements. Signed-off-by: Matt Turner --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c665ef6b..1037fee0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: debian:stretch +image: debian:buster stages: - build @@ -9,9 +9,9 @@ before_script: - echo '#!/bin/sh' > /usr/sbin/policy-rc.d - echo 'exit 101' >> /usr/sbin/policy-rc.d - chmod +x /usr/sbin/policy-rc.d - - echo 'deb http://deb.debian.org/debian stretch-backports main' >> /etc/apt/sources.list + - echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list - apt-get update - - apt-get -y --no-install-recommends install build-essential automake autoconf libtool pkg-config libexpat1-dev libffi-dev libxml2-dev doxygen graphviz xmlto xsltproc docbook-xsl meson/stretch-backports + - apt-get -y --no-install-recommends install build-essential automake autoconf libtool pkg-config libexpat1-dev libffi-dev libxml2-dev doxygen graphviz xmlto xsltproc docbook-xsl meson/buster-backports build-native-autotools: stage: build