Skip to content

Commit dba5ad7

Browse files
committed
Remove JDK 9 and 10 from Jenkins build
Closes gh-1659
1 parent f4038dc commit dba5ad7

File tree

1 file changed

+0
-38
lines changed

1 file changed

+0
-38
lines changed

Jenkinsfile

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -32,44 +32,6 @@ try {
3232
}
3333
}
3434
},
35-
jdk9: {
36-
stage('JDK 9') {
37-
timeout(time: 45, unit: 'MINUTES') {
38-
node('linux') {
39-
checkout scm
40-
sh "git clean -dfx"
41-
try {
42-
withEnv(["JAVA_HOME=${tool 'jdk9'}"]) {
43-
sh './gradlew clean test --no-daemon --stacktrace'
44-
}
45-
}
46-
catch (e) {
47-
currentBuild.result = 'FAILED: jdk9'
48-
throw e
49-
}
50-
}
51-
}
52-
}
53-
},
54-
jdk10: {
55-
stage('JDK 10') {
56-
timeout(time: 45, unit: 'MINUTES') {
57-
node('linux') {
58-
checkout scm
59-
sh "git clean -dfx"
60-
try {
61-
withEnv(["JAVA_HOME=${tool 'jdk10'}"]) {
62-
sh './gradlew clean test --no-daemon --stacktrace'
63-
}
64-
}
65-
catch (e) {
66-
currentBuild.result = 'FAILED: jdk10'
67-
throw e
68-
}
69-
}
70-
}
71-
}
72-
},
7335
jdk11: {
7436
stage('JDK 11') {
7537
timeout(time: 45, unit: 'MINUTES') {

0 commit comments

Comments
 (0)