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

This commit is contained in:
John Blum
2021-04-14 14:28:01 -07:00
parent a5c507f8b2
commit 90a49c6eae
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/session/build-gradle-cache" \
./gradlew clean check --no-daemon --refresh-dependencies --stacktrace