From 5d49ac7e6cc7a18a2986e271ba6c1765761d1e9f Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Wed, 28 Nov 2018 10:24:47 -0600 Subject: [PATCH] Remove Spring IO Checks They are preventing updating to latest versions of libraries --- Jenkinsfile | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2b28a7ffd3..c262b36d53 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,21 +38,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 e) { - currentBuild.result = 'FAILED: springio' - throw e - } finally { - junit '**/build/spring-io*-results/*.xml' - } - } - } } if(currentBuild.result == 'SUCCESS') {