CI: Start supporting Debian 10 'buster', currently under development
authorSimon McVittie <smcv@collabora.com>
Mon, 3 Dec 2018 19:45:46 +0000 (19:45 +0000)
committerSimon McVittie <smcv@collabora.com>
Tue, 4 Dec 2018 12:34:28 +0000 (12:34 +0000)
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 28c27349e252e33215e21b570d41853badd770ef)

.gitlab-ci.yml
.travis.yml

index 4de46a9..5c88527 100644 (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
index a6c1880..9e68d01 100644 (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: