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:
authorSebastian Dröge <sebastian@centricular.com>2023-11-10 09:55:31 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-11-10 09:55:31 +0300
commit885928ea1759c9d3e01f398846191a822f4d4f46 (patch)
tree73706c85f133f6fc4998d7db5d68095797ff66da /.gitlab-ci.yml
parent771741c10ca1d64264dc791c5dd1aab34dc1a424 (diff)
ci: Run `cargo update` as part of the `cargo deny` / `cargo outdated` jobs
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3f9f5fa08..ab49c93d2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -337,6 +337,7 @@ deny:
rules:
- if: '$CI_PIPELINE_SOURCE == "schedule"'
script:
+ - cargo update --color=always
- cargo deny --color=always --workspace --all-features check all
outdated:
@@ -349,7 +350,8 @@ outdated:
rules:
- if: '$CI_PIPELINE_SOURCE == "schedule"'
script:
- - cargo outdated --root-deps-only --exit-code 1 -v
+ - cargo update --color=always
+ - cargo outdated --color=always --root-deps-only --exit-code 1 -v
coverage:
allow_failure: true