12 lines
291 B
YAML
12 lines
291 B
YAML
.maven-test:
|
|
image: $MAVEN_IMAGE
|
|
stage: test
|
|
allow_failure: true
|
|
script:
|
|
- mvn $MAVEN_CLI_OPTS verify
|
|
artifacts:
|
|
expire_in: 2 weeks
|
|
reports:
|
|
junit:
|
|
- $BACKEND_DIR/target/surefire-reports/TEST-*.xml
|
|
- $BACKEND_DIR/target/failsafe-reports/TEST-*.xml |