Add .gitlab-ci.yml

This commit is contained in:
Mike Cifelli 2017-12-09 22:42:37 +00:00
parent 0825d1ee96
commit 15ae5a1c56
1 changed files with 15 additions and 0 deletions

15
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,15 @@
image: maven:3.5-jdk-8
cache:
paths:
- .m2/repository
maven-install:
stage: build
environment: production
script:
- mvn install
artifacts:
paths:
- target/transcendental-lisp-*.jar
expire_in: 1 week