mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-12-22 08:07:07 +00:00
ci: use rules instead of only/except
only/except has got deprecated in favour of rules maybe it fixes #370 ? Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/701>
This commit is contained in:
parent
d53dfcf94e
commit
4d7bd9bfcb
1 changed files with 6 additions and 7 deletions
|
@ -143,9 +143,8 @@ build-nightly:
|
|||
|
||||
update-nightly:
|
||||
extends: build-nightly
|
||||
only:
|
||||
variables:
|
||||
- $UPDATE_NIGHTLY == "1"
|
||||
rules:
|
||||
- if: $UPDATE_NIGHTLY == "1"
|
||||
variables:
|
||||
FDO_FORCE_REBUILD: 1
|
||||
|
||||
|
@ -404,8 +403,8 @@ clippy:
|
|||
deny:
|
||||
extends: .img-stable
|
||||
stage: 'extras'
|
||||
only:
|
||||
- schedules
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == "schedule"
|
||||
script:
|
||||
- cargo deny --color=always check
|
||||
|
||||
|
@ -420,8 +419,8 @@ gir-checks:
|
|||
outdated:
|
||||
extends: .img-stable
|
||||
stage: 'extras'
|
||||
only:
|
||||
- schedules
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == "schedule"
|
||||
script:
|
||||
- cargo outdated --color=always --root-deps-only --exit-code 1 -v
|
||||
|
||||
|
|
Loading…
Reference in a new issue