You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
391 B
YAML
20 lines
391 B
YAML
3 years ago
|
image: maven:3.8.3-openjdk-17
|
||
|
|
||
|
cache:
|
||
|
paths:
|
||
|
- .m2/repository
|
||
|
|
||
|
variables:
|
||
|
MAVEN_OPTS: "-Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository"
|
||
|
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version"
|
||
|
|
||
|
verify:
|
||
|
stage: test
|
||
|
script:
|
||
|
- 'mvn $MAVEN_CLI_OPTS verify'
|
||
|
artifacts:
|
||
|
when: always
|
||
|
reports:
|
||
|
junit:
|
||
|
- "**/target/surefire-reports/TEST-*.xml"
|