Repository: maven-surefire Updated Branches: refs/heads/master cbbc31941 -> 854c0772d
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/854c0772 Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/854c0772 Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/854c0772 Branch: refs/heads/master Commit: 854c0772d2877b18e641918c83438e09fb074bdf Parents: cbbc319 Author: Tibor17 <[email protected]> Authored: Tue Aug 22 03:35:09 2017 +0200 Committer: Tibor17 <[email protected]> Committed: Tue Aug 22 03:35:09 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/854c0772/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 602a8b9..37991fc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { jdk 'JDK 1.8.0_144' } steps { - sh "mvn clean install jacoco:report -B -U -e -fae -V -Prun-its,jenkins -Dsurefire.useFile=false -Dfailsafe.useFile=false -Dintegration-test-port=8084 \\\"-Djdk.home=${tool('JDK 9 b181')}\\\"" + 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')}\\\"" jacoco changeBuildStatus: false, execPattern: '**/*.exec' } post { @@ -28,7 +28,7 @@ pipeline { jdk 'JDK 1.8_121 (Windows Only)' } steps { - bat "mvn clean install jacoco:report -B -U -e -fae -V -Prun-its,jenkins -Dsurefire.useFile=false -Dfailsafe.useFile=false -Dintegration-test-port=8084 \\\"-Djdk.home=${tool('JDK 9 b181')}\\\"" + 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 \\\"-Djdk.home=${tool('JDK 9 b181')}\\\"" jacoco changeBuildStatus: false, execPattern: '**/*.exec' } post { @@ -40,6 +40,6 @@ pipeline { } options { buildDiscarder(logRotator(numToKeepStr:'3')) - timeout(time: 3, unit: 'HOURS') + timeout(time: 10, unit: 'HOURS') } }
