Skip to content
Snippets Groups Projects

Gitlab CI for Theodolite-Kotlin-Quarkus

Merged Lorenz Boguhn requested to merge stu203404/theodolite:feature/gitlabci into theodolite-kotlin
All threads resolved!
2 files
+ 46
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 34
0
image: openjdk:11-jdk
stages:
- build
- test
#- package
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
cache:
paths:
- .gradle/wrapper
- .gradle/caches
compile:
stage: build
script:
- ./theodolite-quarkus/gradlew build
test:
stage: test
script:
- ./theodolite-quarkus/gradlew test --stacktrace
# code_style_klint:
# stage: test
# script:
# - ./theodolite-quarkus/gradlew ktlintCheck
codeanalysis_detekt:
stage: test
script:
- ./theodolite-quarkus/gradlew detekt
\ No newline at end of file
Loading