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

16 lines
327 B
YAML

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