diff options
| -rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 35e8139b0..cb7f0173c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ cache: - ccache/ # Building inkscape -inkscape: +inkscape:linux: stage: build before_script: # CCache Config @@ -56,6 +56,7 @@ inkscape:mac: paths: - build/ allow_failure: true + # This job is a static analysis build by clang. # It takes MORE THAN 3 HOURS, and depending on worker sometimes 4 hours. # Make sure the timeout of the build is big enough @@ -73,8 +74,10 @@ clang: paths: - scan/ -test: +test:linux: stage: test + dependencies: + - inkscape:linux script: - cd build - make test |
