Skip to content
Snippets Groups Projects
Verified Commit 644ecf0b authored by Jérôme Charaoui's avatar Jérôme Charaoui :telescope:
Browse files

ci: use add needs so tests start faster

those jobs don't need the fail-on-desync-wiki job to finish, to be able to
function
parent bc7ff7c9
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,9 @@ mdlint:
image:
name: markdownlint/markdownlint
entrypoint: [""]
needs:
- job: find-files
artifacts: true
script:
- |
echo "working on files: $(cat changed-files.txt)"
......@@ -67,6 +70,9 @@ mdlintall:
image:
name: markdownlint/markdownlint
entrypoint: [""]
needs:
- job: find-files
artifacts: true
script:
- echo 'this is important to get the return value of mdl, not grep'
- set -o pipefail
......@@ -79,6 +85,9 @@ mdlintall:
codespell:
image:
name: debian:stable
needs:
- job: find-files
artifacts: true
before_script:
- apt update
- apt install -qy codespell
......@@ -93,6 +102,9 @@ codespell:
codespellall:
image:
name: debian:stable
needs:
- job: find-files
artifacts: true
before_script:
- apt update
- apt install -qy codespell
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment