浏览代码

Remove JDK 10/11 from Jenkinsfile

This is necessary until we can figure out how to fix the build.

Issue: gh-5860
Rob Winch 7 年之前
父节点
当前提交
12c17e837b
共有 1 个文件被更改,包括 0 次插入30 次删除
  1. 0 30
      Jenkinsfile

+ 0 - 30
Jenkinsfile

@@ -66,36 +66,6 @@ try {
 				}
 			}
 		}
-	},
-	jdk10: {
-		stage('JDK 10') {
-			node {
-				checkout scm
-				try {
-					withEnv(["JAVA_HOME=${ tool 'jdk10' }"]) {
-						sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
-					}
-				} catch(Exception e) {
-					currentBuild.result = 'FAILED: jdk10'
-					throw e
-				}
-			}
-		}
-	},
-	 jdk11: {
-		 stage('JDK 11') {
-			 node {
-				 checkout scm
-				 try {
-					 withEnv(["JAVA_HOME=${ tool 'jdk11' }"]) {
-						 sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
-					 }
-				 } catch(Exception e) {
-					 currentBuild.result = 'FAILED: jdk11'
-					 throw e
-				 }
-			 }
-		 }
 	}
 
 	if(currentBuild.result == 'SUCCESS') {