Revert "Disable Spring IO"

This reverts commit 0805ef0394c4d5bf913d973898cccf50a364c32d.
This commit is contained in:
Joe Grandja 2017-10-23 09:40:59 -04:00
parent 2937477405
commit eef290f1a8

15
Jenkinsfile vendored
View File

@ -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') {