forked from community/product-iots
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
358 B
22 lines
358 B
variables:
|
|
MAVEN_CLI_OPTS: "--batch-mode"
|
|
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"
|
|
|
|
cache:
|
|
paths:
|
|
- .m2/repository/
|
|
- target/
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- mvn $MAVEN_CLI_OPTS clean install -Dmaven.test.skip=true
|
|
tags:
|
|
- OracleJDK1.8
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- mvn $MAVEN_CLI_OPTS test
|
|
tags:
|
|
- OracleJDK1.8 |