Add 'jenkins' Gradle, Java System property set to 'true'.

This commit is contained in:
John Blum
2023-05-12 11:49:26 -07:00
parent 39b05cdcc5
commit 69c1d68689
2 changed files with 2 additions and 2 deletions

View File

@@ -3,4 +3,4 @@
set -eou pipefail
GRADLE_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home -Djava.io.tmpdir=/tmp" \
./gradlew --no-daemon --refresh-dependencies --stacktrace clean build
./gradlew -Pjenkins=true --no-daemon --refresh-dependencies --stacktrace clean build

View File

@@ -3,4 +3,4 @@
set -eou pipefail
GRADLE_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home -Djava.io.tmpdir=/tmp" \
./gradlew clean check --no-daemon --refresh-dependencies --stacktrace
./gradlew -Pjenkins=true clean check --no-daemon --refresh-dependencies --stacktrace