Migration from github to gitlab

This commit is contained in:
Laurent Clouet
2020-10-21 13:12:53 +02:00
parent 6587b4dcef
commit 986fef0e79
2 changed files with 24 additions and 11 deletions

24
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,24 @@
image: java:8-jdk
stages:
- build
- test
- deploy
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
cache:
paths:
- .gradle/wrapper
- .gradle/caches
build:
stage: build
script:
- ./gradlew shadowJar
test:
stage: test
script:
- ./gradlew check