Remove Spring IO Checks for now

This commit is contained in:
Rob Winch
2017-06-09 09:26:20 -05:00
parent 734f7f45a6
commit a565b1c5af

15
Jenkinsfile vendored
View File

@@ -39,21 +39,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') {