Enable integration tests for JDK 10 and 11 builds

See: #1196, #1197
This commit is contained in:
Vedran Pavic
2018-09-18 20:00:32 +02:00
parent 12bb0741bb
commit 1085661984

8
Jenkinsfile vendored
View File

@@ -31,11 +31,11 @@ try {
jdk10: {
stage('JDK 10') {
timeout(time: 30, unit: 'MINUTES') {
node {
node('ubuntu1804') {
checkout scm
try {
withEnv(["JAVA_HOME=${tool 'jdk10'}"]) {
sh './gradlew clean test --no-daemon --refresh-dependencies'
sh './gradlew clean test integrationTest --no-daemon --refresh-dependencies'
}
}
catch (e) {
@@ -49,11 +49,11 @@ try {
jdk11: {
stage('JDK 11') {
timeout(time: 30, unit: 'MINUTES') {
node {
node('ubuntu1804') {
checkout scm
try {
withEnv(["JAVA_HOME=${tool 'jdk11'}"]) {
sh './gradlew clean test --no-daemon --refresh-dependencies'
sh './gradlew clean test integrationTest --no-daemon --refresh-dependencies'
}
}
catch (e) {