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

Fix CI YAML issue

parent 69766663
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!94Build native images in CI pipeline,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
Pipeline #2272 failed
......@@ -203,7 +203,8 @@ build-theodolite-jvm:
build-theodolite-native:
stage: build
extends: .theodolite
before_script: gu install native-image # TODO move to image
before_script:
- gu install native-image # TODO move to image
script: ./gradlew --build-cache assemble -Dquarkus.package.type=native
artifacts:
paths:
......@@ -224,7 +225,6 @@ test-theodolite:
extends: .theodolite
needs:
- build-theodolite-jvm
- build-theodolite-native
- test-theodolite
script: ./gradlew ktlintCheck --continue
......@@ -234,7 +234,6 @@ test-theodolite:
extends: .theodolite
needs:
- build-theodolite-jvm
- build-theodolite-native
- test-theodolite
script: ./gradlew detekt --continue
......@@ -244,7 +243,7 @@ deploy-theodolite:
- .theodolite
- .dind
needs:
- build-theodolite
- build-theodolite-native
- test-theodolite
script:
- DOCKER_TAG_NAME=$(echo $CI_COMMIT_REF_SLUG- | sed 's/^master-$//')
......
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