gilde-ci-cd/templates/java/gradle/gradle-verify.gitlab-ci.yml

15 lines
329 B
YAML

.gradle-verify:
image: $GRADLE_IMAGE
stage: verify
script:
- >
if [ "$BACKEND_DIR" != "" ]; then
cd $BACKEND_DIR
fi
- "./gradlew --build-cache test $GRADLE_CLI_OPTS $GRADLE_EXTRA_OPTS"
artifacts:
expire_in: 2 weeks
reports:
junit:
- "**/build/test-results/**/TEST-*.xml"