From 299f8b5927c047b5be527ea6322e1419513260eb Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 27 Apr 2020 13:18:28 +0200 Subject: [PATCH] ci: run 'cargo outdated' in schedules jobs --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8115135dc..92d746653 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,6 +4,7 @@ include: stages: - "lint" - "test" + - "extras" .base: image: "registry.freedesktop.org/gstreamer/gstreamer-rs/debian/10:$RUST_VERSION-$GST_RS_IMG_TAG" @@ -92,3 +93,12 @@ rustfmt: script: - cargo fmt --version - cargo fmt -- --color=always --check + +outdated: + extends: .img-stable + allow_failure: true + stage: 'extras' + only: + - schedules + script: + - cargo outdated --root-deps-only --exit-code 1 -v