From f93a58dda5b728782e13146dcfbb76e4eeb86585 Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 19 Jun 2018 22:38:12 -0700 Subject: [PATCH] Remove Spring IO Platform check. --- Jenkinsfile | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 27f6824..4c5b934 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ try { node { checkout scm try { - sh "./gradlew clean check --refresh-dependencies --no-daemon" + sh "./gradlew --refresh-dependencies --no-daemon clean check" } catch (Exception cause) { currentBuild.result = 'FAILED: check' @@ -26,23 +26,6 @@ try { } } } - }, - springio: { - stage('Spring IO') { - node { - checkout scm - try { - sh "./gradlew clean springIoCheck -PplatformVersion=Cairo-BUILD-SNAPSHOT -PexcludeProjects='**/samples/**' --refresh-dependencies --no-daemon --stacktrace" - } - catch (Exception cause) { - currentBuild.result = 'FAILED: springio' - throw cause - } - finally { - junit '**/build/spring-io*-results/*.xml' - } - } - } } if (currentBuild.result == 'SUCCESS') {