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:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml18
1 files changed, 15 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 57720f211..c828c63eb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -128,19 +128,31 @@ update-nightly:
extends:
- .dist-debian-container
- .debian:11-stable
- needs: ['build-stable']
+ needs:
+ - job: 'build-stable'
+ optional: true
+ - job: 'update-stable'
+ optional: true
.img-msrv:
extends:
- .dist-debian-container
- .debian:11-msrv
- needs: ['build-msrv']
+ needs:
+ - job: 'build-msrv'
+ optional: true
+ - job: 'update-msrv'
+ optional: true
.img-nightly:
extends:
- .dist-debian-container
- .debian:11-nightly
- needs: ['build-nightly']
+ needs:
+ - job: 'build-nightly'
+ optional: true
+ - job: 'update-nightly'
+ optional: true
.cargo test:
stage: "test"