Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2023-03-09 23:08:24 +0300
committerJordan Petridis <jordan@centricular.com>2023-03-09 23:09:13 +0300
commit9a50f1f31892963d85215d34250080f36a5d279b (patch)
tree0b2d9cab2510ec7736deb62192e87c29be56739c /.gitlab-ci.yml
parent584392049c8fc57ed15b438bd3cc09644192db05 (diff)
ci: Update debian jobs to bookworm
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1125>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml38
1 files changed, 19 insertions, 19 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 27be53caf..1defc9c59 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,4 @@
-.templates_sha: &templates_sha 567700e483aabed992d0a4fea84994a0472deff6
+.templates_sha: &templates_sha fddab8aa63e89a8e65214f59860d9c0f030360c9
include:
- project: 'freedesktop/ci-templates'
@@ -66,9 +66,9 @@ trigger:
when: 'manual'
allow_failure: false
-.debian:11:
+.debian:12:
variables:
- FDO_DISTRIBUTION_VERSION: 'bullseye-slim'
+ FDO_DISTRIBUTION_VERSION: 'bookworm-slim'
before_script:
- source ./ci/env.sh
- mkdir .cargo && echo -e "[net]\ngit-fetch-with-cli = true" > .cargo/config
@@ -80,23 +80,23 @@ trigger:
cargo update
fi
-.debian:11-stable:
- extends: .debian:11
+.debian:12-stable:
+ extends: .debian:12
variables:
FDO_DISTRIBUTION_TAG: '$GST_RS_STABLE-${GST_RS_IMG_TAG}_2023-02-20.0'
- FDO_BASE_IMAGE: "registry.freedesktop.org/gstreamer/gstreamer-rs/debian/bullseye-slim:$GST_RS_STABLE-$GST_RS_IMG_TAG"
+ FDO_BASE_IMAGE: "registry.freedesktop.org/gstreamer/gstreamer-rs/debian/bookworm-slim:$GST_RS_STABLE-$GST_RS_IMG_TAG"
-.debian:11-msrv:
- extends: .debian:11
+.debian:12-msrv:
+ extends: .debian:12
variables:
FDO_DISTRIBUTION_TAG: '$GST_RS_MSRV-${GST_RS_IMG_TAG}_2023-02-20.0'
- FDO_BASE_IMAGE: "registry.freedesktop.org/gstreamer/gstreamer-rs/debian/bullseye-slim:$GST_RS_MSRV-$GST_RS_IMG_TAG"
+ FDO_BASE_IMAGE: "registry.freedesktop.org/gstreamer/gstreamer-rs/debian/bookworm-slim:$GST_RS_MSRV-$GST_RS_IMG_TAG"
-.debian:11-nightly:
- extends: .debian:11
+.debian:12-nightly:
+ extends: .debian:12
variables:
FDO_DISTRIBUTION_TAG: 'nightly-${GST_RS_IMG_TAG}_2023-02-20.0'
- FDO_BASE_IMAGE: "registry.freedesktop.org/gstreamer/gstreamer-rs/debian/bullseye-slim:nightly-$GST_RS_IMG_TAG"
+ FDO_BASE_IMAGE: "registry.freedesktop.org/gstreamer/gstreamer-rs/debian/bookworm-slim:nightly-$GST_RS_IMG_TAG"
.build-debian-container:
extends:
@@ -108,7 +108,7 @@ trigger:
bash ci/install-dav1d.sh &&
apt clean &&
bash ./ci/install-rust-ext.sh &&
- pip install tomli
+ pip install tomli --break-system-packages
needs:
- "trigger"
rules:
@@ -117,17 +117,17 @@ trigger:
build-stable:
extends:
- .build-debian-container
- - .debian:11-stable
+ - .debian:12-stable
build-msrv:
extends:
- .build-debian-container
- - .debian:11-msrv
+ - .debian:12-msrv
build-nightly:
extends:
- .build-debian-container
- - .debian:11-nightly
+ - .debian:12-nightly
# Those jobs are triggered by gstreamer-rs when updating its images
update-stable:
@@ -162,7 +162,7 @@ update-nightly:
.img-stable:
extends:
- .dist-debian-container
- - .debian:11-stable
+ - .debian:12-stable
needs:
- job: 'build-stable'
optional: true
@@ -172,7 +172,7 @@ update-nightly:
.img-msrv:
extends:
- .dist-debian-container
- - .debian:11-msrv
+ - .debian:12-msrv
needs:
- job: 'build-msrv'
optional: true
@@ -182,7 +182,7 @@ update-nightly:
.img-nightly:
extends:
- .dist-debian-container
- - .debian:11-nightly
+ - .debian:12-nightly
needs:
- job: 'build-nightly'
optional: true