From eef290f1a8333d1d2bcec27cf566e0745f443c44 Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Mon, 23 Oct 2017 09:40:59 -0400 Subject: [PATCH] Revert "Disable Spring IO" This reverts commit 0805ef0394c4d5bf913d973898cccf50a364c32d. --- Jenkinsfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 04fde933d4..8d9484cb29 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,6 +38,21 @@ 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') {