gilde-ci-cd/maven-verify-template.gitlab-ci.yml

34 lines
729 B
YAML

.maven-test:
image: $MAVEN_IMAGE
stage: test
script:
- mvn $MAVEN_CLI_OPTS verify
artifacts:
expire_in: 2 weeks
reports:
junit:
- target/surefire-reports/TEST-*.xml
- target/failsafe-reports/TEST-*.xml
.maven-unit-test:
image: $MAVEN_IMAGE
stage: test
script:
- mvn $MAVEN_CLI_OPTS compiler:testCompile surefire:test
artifacts:
expire_in: 2 weeks
reports:
junit:
- target/surefire-reports/TEST-*.xml
.maven-integration-test:
image: $MAVEN_IMAGE
stage: test
script:
- mvn $MAVEN_CLI_OPTS compiler:testCompile failsafe:integration-test
artifacts:
expire_in: 2 weeks
reports:
junit:
- target/failsafe-reports/TEST-*.xml