Disabling JDK11 build until problems are fixed

This commit is contained in:
Martin Stockhammer 2018-12-27 22:42:57 +01:00
parent 1ea94287d8
commit 26772cd3ff
1 changed files with 11 additions and 11 deletions

22
Jenkinsfile vendored
View File

@ -59,17 +59,17 @@ pipeline {
} }
} }
stage('JDK11') { // stage('JDK11') {
steps { // steps {
ws("${env.JOB_NAME}-JDK11") { // ws("${env.JOB_NAME}-JDK11") {
checkout scm // checkout scm
timeout(120) { // timeout(120) {
mavenBuild(buildJdk11,"clean install -U -fae", // mavenBuild(buildJdk11,"clean install -U -fae",
[junitPublisher(disabled: false, ignoreAttachments: false)]) // [junitPublisher(disabled: false, ignoreAttachments: false)])
} // }
} // }
} // }
} // }
} }
} }
} }