Create ci/build.sh file to run Gradle build lifecycle task.

This commit is contained in:
John Blum
2023-05-12 10:32:15 -07:00
parent 67f4ef10ff
commit 6efb07b36b

6
ci/build.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash -x
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