17 lines
374 B
YAML
17 lines
374 B
YAML
.maven-verify:
|
|
image: $MAVEN_IMAGE
|
|
stage: verify
|
|
script:
|
|
- >
|
|
if [ "$BACKEND_DIR" != "" ]; then
|
|
cd $BACKEND_DIR
|
|
fi
|
|
- mvn $MAVEN_CLI_OPTS $MAVEN_EXTRA_OPTS verify $MVN_EXTRA_ARGS
|
|
artifacts:
|
|
expire_in: 2 weeks
|
|
reports:
|
|
junit:
|
|
- "**/target/surefire-reports/TEST-*.xml"
|
|
- "**/target/failsafe-reports/TEST-*.xml"
|
|
|