summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2022-09-04 18:52:39 +0000
committerSimon McVittie <smcv@collabora.com>2022-09-04 18:52:39 +0000
commitd582c44a319a62b2006bd800c0bd4d0b86f20e30 (patch)
treebd7ae7393fda75c54096da8bcb8711cd29a5e6dc
parent27bc4b1841e8d7e2fec065feb33f53680112da72 (diff)
parent171d2f42299c9bd0072daeade7edf96aed123194 (diff)
downloaddbus-python-d582c44a319a62b2006bd800c0bd4d0b86f20e30.tar.gz
Merge branch 'wip/smcv/ci' into 'master'
CI: Stop using EOL Ubuntu 22.10 See merge request dbus/dbus-python!19
-rw-r--r--.gitlab-ci.yml24
1 files changed, 16 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a294814..2699530 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,4 @@
-# Copyright © 2015-2019 Collabora Ltd.
+# Copyright © 2015-2022 Collabora Ltd.
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
@@ -20,7 +20,7 @@
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
-image: debian:buster-slim
+image: debian:bookworm-slim
stages:
- build
@@ -34,7 +34,7 @@ variables:
ci_parallel: "2"
ci_sudo: "yes"
ci_distro: "debian"
- ci_suite: "buster"
+ ci_suite: "bookworm"
build:python3.5:
stage: build
@@ -56,12 +56,14 @@ build:python3.5-dbg:
build:python3.7:
stage: build
+ image: "debian:buster-slim"
variables:
dbus_ci_system_python: python3
script: *script
build:python3.7-dbg:
stage: build
+ image: "debian:buster-slim"
variables:
dbus_ci_system_python: python3-dbg
script: *script
@@ -85,13 +87,19 @@ build:python3.9-dbg:
build:python3.10:
stage: build
- image: "ubuntu:impish"
+ image: "debian:bookworm-slim"
variables:
- ci_distro: ubuntu
- ci_suite: impish
+ ci_suite: bookworm
dbus_ci_system_python: python3.10
- dbus_ci_configure_flags: --disable-documentation
- DISTCHECK_CONFIGURE_FLAGS: --disable-documentation
+ script: *script
+
+build:python3.10-dbg:
+ stage: build
+ image: "debian:bookworm-slim"
+ variables:
+ ci_suite: bookworm
+ dbus_ci_system_python: python3.10-dbg
+ dbus_ci_system_python_module_suffix: -dbg
script: *script
# vim:set sw=2 sts=2 et: