transcendental-lisp/.gitlab-ci.yml

16 lines
229 B
YAML
Raw Normal View History

2017-12-09 17:42:37 -05:00
image: maven:3.5-jdk-8
2017-12-09 17:55:27 -05:00
cache:
paths:
2017-12-09 17:57:41 -05:00
- /root/.m2/
2017-12-09 17:55:27 -05:00
2017-12-09 17:57:41 -05:00
maven-package:
2017-12-09 17:42:37 -05:00
stage: build
environment: production
script:
2017-12-09 17:55:27 -05:00
- mvn package
2017-12-09 17:42:37 -05:00
artifacts:
paths:
- target/transcendental-lisp-*.jar
expire_in: 1 week