From: Dominik Stadler Date: Sat, 29 Jul 2017 06:57:40 +0000 (+0000) Subject: Jenkins-DSL: Print out the exact version of java in the pre-steps X-Git-Tag: REL_3_17_FINAL~27 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=73d041eb7c95d44259c340e7edbf13c89f8e317b;p=poi.git Jenkins-DSL: Print out the exact version of java in the pre-steps git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1803357 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index c1b5412153..85b119f1b7 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -165,8 +165,10 @@ for more details about the DSL. def shellcmds = '# show which files are currently modified in the working copy\n' + 'svn status\n' + '\n' + + '# print out information about which exact version of java we are using\n' + 'echo Java-Home: $JAVA_HOME\n' + 'ls -al $JAVA_HOME/\n' + + '$JAVA_HOME/bin/java -version\n' + '\n' + (poijob.shell ?: '') + '\n' + '# ignore any error message\n' +