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 ccd2664 commit d99ecc2Copy full SHA for d99ecc2
Jenkinsfile
@@ -81,6 +81,21 @@ try {
81
}
82
83
84
+ },
85
+ jdk11: {
86
+ stage('JDK 11') {
87
+ node {
88
+ checkout scm
89
+ try {
90
+ withEnv(["JAVA_HOME=${ tool 'jdk11' }"]) {
91
+ sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
92
+ }
93
+ } catch(Exception e) {
94
+ currentBuild.result = 'FAILED: jdk11'
95
+ throw e
96
97
98
99
100
101
if(currentBuild.result == 'SUCCESS') {
0 commit comments