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>2022-09-10 14:56:30 +0300
committerSebastian Dröge <slomo@coaxion.net>2022-09-12 11:16:10 +0300
commit23c07d3cb36761d34377f4f16b0c0bcd33f6132e (patch)
tree2c2251b43fe8ea2ff3173fd4a701f26b0cdd2248 /.gitlab-ci.yml
parent3313a93ff726be7447363f90868e95c422d34c6d (diff)
ci: declare the depencency between build jobs
This enables the pipeline to execute jobs asyncronously when they are ready, regardless if the pipeline stage has finished.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 95555834f..05944a467 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -128,16 +128,19 @@ update-nightly:
extends:
- .dist-debian-container
- .debian:11-stable
+ needs: ['build-stable']
.img-msrv:
extends:
- .dist-debian-container
- .debian:11-msrv
+ needs: ['build-msrv']
.img-nightly:
extends:
- .dist-debian-container
- .debian:11-nightly
+ needs: ['build-nightly']
.cargo test:
stage: "test"
@@ -264,6 +267,7 @@ gst-build:
.msvc2019 build:
stage: 'test'
+ needs: []
tags:
- 'docker'
- 'windows'