CI: Use Debian 11 'bullseye' for most builds

dbus 1.12.x was included in both Debian 10 'buster', which is now EOL,
and Debian 11 'bullseye', which continues to be supported. I need this
branch to work on Debian 11 for security and bugfix backports, but I'm
no longer supporting Debian 10.

Leave one build variant, the "legacy" build, on Debian 10 to check that
we can still build there, to be nice to the Debian LTS subproject.

Also continue to use Debian 10 for mingw builds, since dbus#380 has
not been fixed in this branch (which is now the security-fix-only
old-stable branch, so the fix will not be backported).

Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
Simon McVittie 2022-09-13 16:15:16 +01:00
parent 99fa277774
commit b559b318f1

View file

@ -20,7 +20,7 @@
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
image: debian:buster-slim
image: debian:bullseye-slim
stages:
- build
@ -45,11 +45,11 @@ variables:
ci_parallel: "2"
ci_sudo: "yes"
ci_distro: "debian"
ci_suite: "buster"
ci_suite: "bullseye"
production:
stage: build
image: "debian:buster-slim"
image: "debian:bullseye-slim"
variables:
ci_variant: "production"
script: &script
@ -58,7 +58,7 @@ production:
debug:
stage: build
image: "debian:buster-slim"
image: "debian:bullseye-slim"
variables:
ci_variant: "debug"
script: *script
@ -66,14 +66,13 @@ debug:
reduced:
stage: build
when: manual
image: "debian:buster-slim"
image: "debian:bullseye-slim"
variables:
ci_variant: "reduced"
script: *script
legacy:
stage: build
when: manual
image: "debian:buster-slim"
variables:
ci_variant: "legacy"
@ -81,7 +80,7 @@ legacy:
cmake:
stage: build
image: "debian:buster-slim"
image: "debian:bullseye-slim"
variables:
ci_buildsys: "cmake-dist"
script: *script