mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 01:21:05 +00:00
ci: Avoid cloning the submodules when they are not needed
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1503>
This commit is contained in:
parent
4ee374e60c
commit
9b5b1d4650
1 changed files with 9 additions and 0 deletions
|
@ -76,6 +76,7 @@ trigger:
|
|||
stage: 'trigger'
|
||||
variables:
|
||||
GIT_STRATEGY: none
|
||||
GIT_SUBMODULE_STRATEGY: "none"
|
||||
tags: [ 'placeholder-job' ]
|
||||
script:
|
||||
- echo "Trigger job done, now running the pipeline."
|
||||
|
@ -316,6 +317,8 @@ rustfmt:
|
|||
extends: .img-stable
|
||||
stage: "lint"
|
||||
tags: [ 'placeholder-job' ]
|
||||
variables:
|
||||
GIT_SUBMODULE_STRATEGY: "none"
|
||||
script:
|
||||
- cargo fmt --version
|
||||
- cargo fmt -- --color=always --check
|
||||
|
@ -327,6 +330,8 @@ check commits:
|
|||
extends: .img-stable
|
||||
stage: "lint"
|
||||
tags: [ 'placeholder-job' ]
|
||||
variables:
|
||||
GIT_SUBMODULE_STRATEGY: "none"
|
||||
script:
|
||||
- ci-fairy check-commits --textwidth 0 --no-signed-off-by
|
||||
needs:
|
||||
|
@ -337,6 +342,8 @@ typos:
|
|||
extends: .img-stable
|
||||
stage: "lint"
|
||||
tags: [ 'placeholder-job' ]
|
||||
variables:
|
||||
GIT_SUBMODULE_STRATEGY: "none"
|
||||
script:
|
||||
- typos
|
||||
needs:
|
||||
|
@ -384,6 +391,8 @@ gir-checks:
|
|||
outdated:
|
||||
extends: .img-stable
|
||||
stage: 'extras'
|
||||
variables:
|
||||
GIT_SUBMODULE_STRATEGY: "none"
|
||||
needs:
|
||||
- job: 'build-stable'
|
||||
artifacts: false
|
||||
|
|
Loading…
Reference in a new issue