mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-22 18:16:28 +00:00
ci: replace only clause with rules
only/except is deprecated and going to be removed from future versions of gitlab.
This commit is contained in:
parent
4cba9d1e53
commit
3d2792a1c3
1 changed files with 4 additions and 4 deletions
|
@ -164,8 +164,8 @@ clippy:
|
||||||
deny:
|
deny:
|
||||||
extends: .img-stable
|
extends: .img-stable
|
||||||
stage: 'extras'
|
stage: 'extras'
|
||||||
only:
|
rules:
|
||||||
- schedules
|
- if: '$CI_PIPELINE_SOURCE == "schedule"'
|
||||||
script:
|
script:
|
||||||
- cargo deny check
|
- cargo deny check
|
||||||
|
|
||||||
|
@ -173,7 +173,7 @@ outdated:
|
||||||
extends: .img-stable
|
extends: .img-stable
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
stage: 'extras'
|
stage: 'extras'
|
||||||
only:
|
rules:
|
||||||
- schedules
|
- if: '$CI_PIPELINE_SOURCE == "schedule"'
|
||||||
script:
|
script:
|
||||||
- cargo outdated --root-deps-only --exit-code 1 -v
|
- cargo outdated --root-deps-only --exit-code 1 -v
|
||||||
|
|
Loading…
Reference in a new issue