mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-30 13:15:34 +00:00
Run sast jobs in parallel with build jobs
This commit is contained in:
parent
436db8c0e5
commit
92b9e9269d
1 changed files with 7 additions and 1 deletions
|
@ -7,8 +7,8 @@ include:
|
||||||
# Note: We set `needs` on each job to control the job DAG.
|
# Note: We set `needs` on each job to control the job DAG.
|
||||||
# See https://docs.gitlab.com/ee/ci/yaml/#needs
|
# See https://docs.gitlab.com/ee/ci/yaml/#needs
|
||||||
stages:
|
stages:
|
||||||
- test
|
|
||||||
- build
|
- build
|
||||||
|
- test
|
||||||
|
|
||||||
# https://blog.nimbleways.com/let-s-make-faster-gitlab-ci-cd-pipelines/
|
# https://blog.nimbleways.com/let-s-make-faster-gitlab-ci-cd-pipelines/
|
||||||
variables:
|
variables:
|
||||||
|
@ -20,6 +20,12 @@ variables:
|
||||||
SAST_EXCLUDED_ANALYZERS: "bandit"
|
SAST_EXCLUDED_ANALYZERS: "bandit"
|
||||||
SAST_EXCLUDED_PATHS: "extern"
|
SAST_EXCLUDED_PATHS: "extern"
|
||||||
|
|
||||||
|
sast:
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
- linux
|
||||||
|
needs: []
|
||||||
|
|
||||||
.Ubuntu_Image:
|
.Ubuntu_Image:
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
|
Loading…
Reference in a new issue