This is an automated email from the ASF dual-hosted git repository. olamy pushed a commit to branch multithread-build-possible in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
commit 263fabf9972650c230f77c8d19b2fedb33bb6ba2 Author: Olivier Lamy <ol...@apache.org> AuthorDate: Sun Feb 27 18:34:15 2022 +1000 try -T3 for Jenkins and gh Signed-off-by: Olivier Lamy <ol...@apache.org> --- .github/workflows/maven-verify.yml | 4 ++-- Jenkinsfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 6f6405e..44340e8 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -28,9 +28,9 @@ jobs: with: jdk-matrix: '[ "8", "11", "17", "18-ea" ]' ff-jdk: '18-ea' - ff-goal: 'clean install site -nsu' + ff-goal: 'clean install site -nsu -T3' ff-site-goal: '-v' - verify-goal: 'clean install -nsu -P run-its' + verify-goal: 'clean install -nsu -P run-its -T3' verify-site-goal: '-v' verify-fail-fast: false failure-upload-path: | diff --git a/Jenkinsfile b/Jenkinsfile index 7551851..8ab46a9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -34,7 +34,7 @@ final def mavens = env.BRANCH_NAME == 'master' ? ['3.6.x', '3.2.x'] : ['3.2.x'] // all non-EOL versions and the first EA final def jdks = [18, 17, 11, 8] -final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its'] +final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its','-T3'] final def goals = ['clean', 'install'] final def goalsDepl = ['clean', 'deploy'] final Map stages = [:]