Use Bash shell scripts to separate and encapsulate the build steps in the Jenkins CI build stages.

This commit is contained in:
John Blum
2021-04-12 16:12:27 -07:00
parent b5ea5358a2
commit 7f0f7b83df
6 changed files with 69 additions and 0 deletions

6
ci/check.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash -x
set -eou pipefail
GRADLE_OPTS="-Duser.name=jenkins -Djava.io.tmpdir=/tmp -Dgradle.user.home=/tmp/geode/boot/build-gradle-cache" \
./gradlew clean check --no-daemon --refresh-dependencies --stacktrace