.gitlab-ci.yml: Switch from Stretch to Buster
authorMatt Turner <mattst88@gmail.com>
Mon, 16 Mar 2020 23:43:57 +0000 (16:43 -0700)
committerMatt Turner <mattst88@gmail.com>
Wed, 18 Mar 2020 20:35:25 +0000 (13:35 -0700)
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 <mattst88@gmail.com>
.gitlab-ci.yml

index c665ef6..1037fee 100644 (file)
@@ -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