We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 315a9d1 commit df0709cCopy full SHA for df0709c
Jenkinsfile
@@ -33,9 +33,8 @@ pipeline {
33
34
// Cleanup any prior build system resources
35
try {
36
- sh "echo 'Clean up GemFire/Geode files & build artifacts...'"
37
- sh "ci/cleanupGemFiles.sh"
38
sh "ci/cleanupArtifacts.sh"
+ sh "ci/cleanupGemFiles.sh"
39
}
40
catch (ignore) { }
41
ci/build.sh
@@ -0,0 +1,6 @@
1
+#!/bin/bash -x
2
+
3
+set -eou pipefail
4
5
+GRADLE_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home -Djava.io.tmpdir=/tmp" \
6
+ ./gradlew --no-daemon --refresh-dependencies --stacktrace clean build
0 commit comments