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 36f1cd5 commit e6a88ccCopy full SHA for e6a88cc
Jenkinsfile
@@ -81,6 +81,24 @@ try {
81
}
82
83
84
+ },
85
+ jdk12: {
86
+ stage('JDK 12') {
87
+ timeout(time: 45, unit: 'MINUTES') {
88
+ node('ubuntu1804') {
89
+ checkout scm
90
+ try {
91
+ withEnv(["JAVA_HOME=${tool 'openjdk12'}"]) {
92
+ sh './gradlew clean test integrationTest --no-daemon --refresh-dependencies'
93
+ }
94
95
+ catch (e) {
96
+ currentBuild.result = 'FAILED: jdk12'
97
+ throw e
98
99
100
101
102
103
104
if (currentBuild.result == 'SUCCESS') {
0 commit comments