Remove Spring IO Platform checks.

This commit is contained in:
John Blum
2018-04-03 18:42:35 -07:00
parent cd7c79a6f2
commit 4a7d41ea13

17
Jenkinsfile vendored
View File

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