summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2020-03-16 16:43:57 -0700
committerMatt Turner <mattst88@gmail.com>2020-03-18 13:35:25 -0700
commitd840681707287df9a06bb427caab065b2e50515d (patch)
treefda4db3efa9d21a0775e5f16c69341733c97d189 /.gitlab-ci.yml
parent618663c791092bb82dc0a153a4a2fe97582a54bc (diff)
downloadwayland-d840681707287df9a06bb427caab065b2e50515d.tar.gz
.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 <mattst88@gmail.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c665ef6..1037fee 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