Repository: maven-surefire Updated Branches: refs/heads/jenkinsfile 86a0dd387 -> b9924cd4e
Jenkinsfile Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/b9924cd4 Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/b9924cd4 Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/b9924cd4 Branch: refs/heads/jenkinsfile Commit: b9924cd4eeb2ad99999e0868e3a1311a3919880b Parents: 86a0dd3 Author: Tibor17 <[email protected]> Authored: Tue Aug 22 15:41:08 2017 +0200 Committer: Tibor17 <[email protected]> Committed: Tue Aug 22 15:41:08 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/b9924cd4/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index cbfd004..11b0716 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,8 +4,8 @@ pipeline { stage('Platforms') { steps { parallel unix: { - node("${env.NIX_LABEL}") { - stage('Unix Build') { + stage('Unix Build') { + node("${env.NIX_LABEL}") { checkout scm withEnv(["JAVA_HOME=${tool('JDK 1.8.0_144')}", "PATH+MAVEN=${tool('Maven 3.5.0')}/bin:${env.JAVA_HOME}/bin"]) { sh "mvn clean install jacoco:report -B -U -e -fae -V -P run-its,jenkins -Dsurefire.useFile=false -Dfailsafe.useFile=false -Dintegration-test-port=8084 \\\"-Djdk.home=${tool('JDK 9 b181')}\\\"" @@ -20,8 +20,8 @@ pipeline { } }, windows: { - node("${env.WIN_LABEL}") { - stage('Windows Build') { + stage('Windows Build') { + node("${env.WIN_LABEL}") { checkout scm withEnv(["JAVA_HOME=${tool('JDK 1.8_121 (Windows Only)')}", "PATH+MAVEN=${tool('Maven 3.5.0 (Windows)')}\\bin;${env.JAVA_HOME}\\bin"]) { bat "mvn clean install jacoco:report -B -U -e -fae -V -P run-its,jenkins -Dsurefire.useFile=false -Dfailsafe.useFile=false -Dintegration-test-port=8084"
