From 0346447e2ad3795b79c469b43f54fc83959acbae Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Thu, 27 Jun 2019 13:29:46 -0500 Subject: [PATCH] #1007 - Reenable spring-next testing profile. Now that Spring HATEAOS is based on Spring Framework 5.2.0.M3, which has upgraded it's handling of charset variables in web responses, we can go back to also testing against Spring Framework 5.2.0.BUILD-SNAPSHOT. --- Jenkinsfile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 9feb9a0a..a4877077 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -62,6 +62,39 @@ pipeline { sh "PROFILE=none ci/test.sh" } } + stage("test: spring-next (jdk8)") { + agent { + docker { + image 'adoptopenjdk/openjdk8:latest' + args '-v $HOME/.m2:/root/.m2' + } + } + steps { + sh "PROFILE=spring-next ci/test.sh" + } + } + stage("test: spring-next (jdk11)") { + agent { + docker { + image 'adoptopenjdk/openjdk11:latest' + args '-v $HOME/.m2:/root/.m2' + } + } + steps { + sh "PROFILE=spring-next ci/test.sh" + } + } + stage("test: spring-next (jdk12)") { + agent { + docker { + image 'adoptopenjdk/openjdk12:latest' + args '-v $HOME/.m2:/root/.m2' + } + } + steps { + sh "PROFILE=spring-next ci/test.sh" + } + } } }