CI: Start supporting Debian 10 'buster', currently under development

This gives us a way to build on a more recent host OS if we want to.
For Gitlab-CI it's disabled by default.

Signed-off-by: Simon McVittie <smcv@collabora.com>
(cherry picked from commit 28c27349e2)
This commit is contained in:
Simon McVittie 2018-12-03 19:45:46 +00:00
parent 8d34987ef7
commit e07e6377a1
2 changed files with 9 additions and 0 deletions

View file

@ -127,6 +127,14 @@ build:jessie:
ci_suite: "jessie"
script: *script
build:buster:
when: manual
stage: build
image: "debian:buster-slim"
variables:
ci_suite: "buster"
script: *script
build:xenial:
when: manual
stage: build

View file

@ -41,5 +41,6 @@ env:
- ci_host=x86_64-w64-mingw32 ci_buildsys=cmake
- 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: