1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Revert "Disable Spring IO"

This reverts commit b21472ce6c.
This commit is contained in:
Rob Winch
2017-07-11 10:55:20 -05:00
parent b21472ce6c
commit acd9de6fad
Vendored
+15
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') {