FabledSkyBlock/.gitlab-ci.yml

20 lines
316 B
YAML
Raw Normal View History

2020-06-15 03:16:31 +02:00
image: maven:latest
2020-06-15 03:07:08 +02:00
variables:
2020-06-15 03:16:31 +02:00
MAVEN_CLI_OPTS: "-s .m2/settings.xml --batch-mode"
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"
2020-06-15 03:07:08 +02:00
cache:
paths:
2020-06-15 03:16:31 +02:00
- .m2/repository/
- target/
2020-06-15 03:07:08 +02:00
2020-06-15 03:16:31 +02:00
build:
stage: build
2020-06-15 03:07:08 +02:00
script:
2020-06-15 03:16:31 +02:00
- mvn $MAVEN_CLI_OPTS compile
2020-06-15 03:07:08 +02:00
2020-06-15 03:16:31 +02:00
test:
stage: test
2020-06-15 03:07:08 +02:00
script:
2020-06-15 03:16:31 +02:00
- mvn $MAVEN_CLI_OPTS test