Skip to content
Snippets Groups Projects
Commit 50b9e76f authored by Sören Henning's avatar Sören Henning
Browse files

Add build job dependency for subsequent jobs

parent 526f520c
No related branches found
No related tags found
2 merge requests!89Single CI/CD pipeline definitions,!84Gitlab CI for Theodolite-Kotlin-Quarkus
Pipeline #2093 passed
...@@ -45,6 +45,7 @@ checkstyle-benchmarks: ...@@ -45,6 +45,7 @@ checkstyle-benchmarks:
stage: check stage: check
extends: .benchmarks extends: .benchmarks
needs: needs:
- build-benchmarks
- test-benchmarks - test-benchmarks
script: ./gradlew checkstyle --continue script: ./gradlew checkstyle --continue
artifacts: artifacts:
...@@ -57,6 +58,7 @@ pmd-benchmarks: ...@@ -57,6 +58,7 @@ pmd-benchmarks:
stage: check stage: check
extends: .benchmarks extends: .benchmarks
needs: needs:
- build-benchmarks
- test-benchmarks - test-benchmarks
script: ./gradlew pmd --continue script: ./gradlew pmd --continue
artifacts: artifacts:
...@@ -69,6 +71,7 @@ spotbugs-benchmarks: ...@@ -69,6 +71,7 @@ spotbugs-benchmarks:
stage: check stage: check
extends: .benchmarks extends: .benchmarks
needs: needs:
- build-benchmarks
- test-benchmarks - test-benchmarks
script: ./gradlew spotbugs --continue script: ./gradlew spotbugs --continue
artifacts: artifacts:
...@@ -81,6 +84,7 @@ spotbugs-benchmarks: ...@@ -81,6 +84,7 @@ spotbugs-benchmarks:
stage: deploy stage: deploy
extends: .benchmarks extends: .benchmarks
needs: needs:
- build-benchmarks
- checkstyle-benchmarks - checkstyle-benchmarks
- pmd-benchmarks - pmd-benchmarks
- spotbugs-benchmarks - spotbugs-benchmarks
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment