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