This is an automated email from the ASF dual-hosted git repository.
sai_boorlagadda pushed a commit to branch feature/GEODE-10433
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/feature/GEODE-10433 by this
push:
new a1b338675e added debug to gradle
a1b338675e is described below
commit a1b338675e059e29bac9e462e5c172b62ae6992b
Author: Sai Boorlagadda <[email protected]>
AuthorDate: Wed Nov 16 16:33:39 2022 -0800
added debug to gradle
---
.jenkins/Jenkinsfile | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.jenkins/Jenkinsfile b/.jenkins/Jenkinsfile
index 3b48693f2c..3f2ec87b89 100644
--- a/.jenkins/Jenkinsfile
+++ b/.jenkins/Jenkinsfile
@@ -16,7 +16,7 @@
// under the License.
def doTest(env, target = "test") {
- sh """./gradlew ${target}"""
+ sh """./gradlew --debug ${target}"""
}
pipeline {
@@ -24,6 +24,9 @@ pipeline {
stages {
stage('Build') {
agent { label 'ubuntu' }
+ tools {
+ jdk 'jdk_1.8_latest'
+ }
steps {
doTest(env)
}