Skip to content

Commit 026a951

Browse files
committed
Remove JDK 9 and JDK 10 build from Jenkins pipeline
Closes gh-8482
1 parent db155b3 commit 026a951

File tree

1 file changed

+0
-44
lines changed

1 file changed

+0
-44
lines changed

Jenkinsfile

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -99,50 +99,6 @@ try {
9999
}
100100
}
101101
},
102-
jdk9: {
103-
stage('JDK 9') {
104-
node {
105-
checkout scm
106-
sh "git clean -dfx"
107-
try {
108-
withCredentials([GRADLE_ENTERPRISE_CACHE_USER,
109-
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY]) {
110-
withEnv([jdkEnv("jdk9"),
111-
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
112-
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
113-
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
114-
sh "./gradlew test --stacktrace"
115-
}
116-
}
117-
} catch(Exception e) {
118-
currentBuild.result = 'FAILED: jdk9'
119-
throw e
120-
}
121-
}
122-
}
123-
},
124-
jdk10: {
125-
stage('JDK 10') {
126-
node {
127-
checkout scm
128-
sh "git clean -dfx"
129-
try {
130-
withCredentials([GRADLE_ENTERPRISE_CACHE_USER,
131-
GRADLE_ENTERPRISE_SECRET_ACCESS_KEY]) {
132-
withEnv([jdkEnv("jdk10"),
133-
"GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USERNAME}",
134-
"GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PASSWORD}",
135-
"GRADLE_ENTERPRISE_ACCESS_KEY=${GRADLE_ENTERPRISE_ACCESS_KEY}"]) {
136-
sh "./gradlew test --stacktrace"
137-
}
138-
}
139-
} catch(Exception e) {
140-
currentBuild.result = 'FAILED: jdk10'
141-
throw e
142-
}
143-
}
144-
}
145-
},
146102
jdk11: {
147103
stage('JDK 11') {
148104
node {

0 commit comments

Comments
 (0)