Remove Spring IO check from build

This commit is contained in:
Vedran Pavic
2018-07-30 02:31:00 +02:00
parent 00465a6f00
commit 7d3472f55d

15
Jenkinsfile vendored
View File

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