Browse Source

Revert "Disable Spring IO"

This reverts commit 0805ef0394c4d5bf913d973898cccf50a364c32d.
Joe Grandja 7 years ago
parent
commit
eef290f1a8
1 changed files with 15 additions and 0 deletions
  1. 15 0
      Jenkinsfile

+ 15 - 0
Jenkinsfile

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