enable git ci

This commit is contained in:
Bixilon 2021-02-20 16:49:49 +01:00
parent 909ffc08a8
commit 25ad62c612
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4

17
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,17 @@
variables:
MAVEN_OPTS: "-Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository"
MAVEN_CLI_OPTS: "--errors --fail-at-end --show-version"
image: maven:3-openjdk-8
cache:
paths:
- .m2/repository
stages:
- build
build:
stage: build
script:
- 'mvn $MAVEN_CLI_OPTS verify'