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 a6cbc90 commit fc6b66fCopy full SHA for fc6b66f
Jenkinsfile
@@ -100,6 +100,21 @@ try {
100
}
101
102
103
+ },
104
+ jdk12: {
105
+ stage('JDK 12') {
106
+ node {
107
+ checkout scm
108
+ try {
109
+ withEnv(["JAVA_HOME=${ tool 'openjdk12' }"]) {
110
+ sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
111
+ }
112
+ } catch(Exception e) {
113
+ currentBuild.result = 'FAILED: jdk12'
114
+ throw e
115
116
117
118
119
120
if(currentBuild.result == 'SUCCESS') {
0 commit comments