summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2019-07-15 13:51:17 +0100
committerSimon McVittie <smcv@collabora.com>2019-07-15 13:51:17 +0100
commit57930245bfb8c48dee4dd61868f4a2c1819b32b2 (patch)
treeff97c6a04b052ea114a30e8e11a01ed173ee9ef9
parente977a44dcebb76a971cf6593e0fc2649269525b6 (diff)
Run CI on Debian 10 'buster' now that it's stable
Signed-off-by: Simon McVittie <smcv@collabora.com>
-rw-r--r--.gitlab-ci.yml15
-rw-r--r--.travis.yml1
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: