diff options
author | Simon McVittie <smcv@collabora.com> | 2018-12-03 19:45:46 +0000 |
---|---|---|
committer | Simon McVittie <smcv@collabora.com> | 2018-12-04 12:34:28 +0000 |
commit | e07e6377a122385a79932299d3bd1eccc0415c70 (patch) | |
tree | 081987f40b2bac17391f77ca2d1901d3e277d88e /.gitlab-ci.yml | |
parent | 8d34987ef76eb0b4e225ff40f26f355870f0edd2 (diff) | |
download | dbus-e07e6377a122385a79932299d3bd1eccc0415c70.tar.gz dbus-e07e6377a122385a79932299d3bd1eccc0415c70.tar.bz2 dbus-e07e6377a122385a79932299d3bd1eccc0415c70.zip |
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 28c27349e252e33215e21b570d41853badd770ef)
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4de46a93..5c88527a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 |