From 674877f7502b7e1bbb72f71d202ff6bdc5dabae9 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Sun, 24 Jul 2022 21:30:08 +1000 Subject: [PATCH] remove -T3 option Signed-off-by: Olivier Lamy --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 419aece38e..c3f1381912 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -34,7 +34,7 @@ final def mavens = env.BRANCH_NAME == 'master' ? ['3.8.x', '3.2.x'] : ['3.8.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','-T3'] +final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its'] final def goals = ['clean', 'install'] final def goalsDepl = ['clean', 'deploy'] final Map stages = [:]