Adding scm checkout for JDK builds

This commit is contained in:
Martin Stockhammer 2018-05-18 20:21:34 +02:00
parent fd2d49761a
commit 60ecbdfe0e
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -85,6 +85,7 @@ pipeline {
stage('JDK9') {
steps {
checkout scm
ws("${env.JOB_NAME}-JDK9") {
timeout(120) {
withMaven(maven: buildMvn, jdk: buildJdk9,
@ -105,7 +106,7 @@ pipeline {
}
stage('JDK10') {
steps {
checkout scm
ws("${env.JOB_NAME}-JDK10") {
timeout(120) {
withMaven(maven: buildMvn, jdk: buildJdk10,