From 57930245bfb8c48dee4dd61868f4a2c1819b32b2 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 15 Jul 2019 13:51:17 +0100 Subject: Run CI on Debian 10 'buster' now that it's stable Signed-off-by: Simon McVittie --- .gitlab-ci.yml | 15 +++++++++++---- .travis.yml | 1 + 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 89a4dff..68ed24f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,7 +22,7 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -image: debian:stretch-slim +image: debian:buster-slim stages: - build @@ -35,11 +35,11 @@ variables: ci_parallel: "2" ci_sudo: "yes" ci_distro: "debian" - ci_suite: "stretch" + ci_suite: "buster" build:production: stage: build - image: "debian:stretch-slim" + image: "debian:buster-slim" variables: ci_variant: "production" script: &script @@ -48,11 +48,18 @@ build:production: build:debug: stage: build - image: "debian:stretch-slim" + image: "debian:buster-slim" variables: ci_variant: "debug" script: *script +build:stretch: + stage: build + image: "debian:stretch-slim" + variables: + ci_suite: "stretch" + script: *script + build:jessie: stage: build image: "debian:jessie-slim" diff --git a/.travis.yml b/.travis.yml index 3e0b25e..383eb0c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,5 +34,6 @@ env: - ci_variant=debug - ci_docker=debian:jessie-slim ci_distro=debian ci_suite=jessie - ci_docker=debian:stretch-slim ci_distro=debian ci_suite=stretch + - ci_docker=debian:buster-slim ci_distro=debian ci_suite=buster # vim:set sw=2 sts=2 et: -- cgit v1.2.1