14 lines
283 B
YAML
14 lines
283 B
YAML
.maven-verify:
|
|
image: $MAVEN_IMAGE
|
|
stage: verify
|
|
script:
|
|
- "cd $BACKEND_DIR"
|
|
- mvn $MAVEN_CLI_OPTS verify
|
|
artifacts:
|
|
expire_in: 2 weeks
|
|
reports:
|
|
junit:
|
|
- "**/target/surefire-reports/TEST-*.xml"
|
|
- "**/target/failsafe-reports/TEST-*.xml"
|
|
|