diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 2d827a276a..2ac2d21b1f 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -28,9 +28,9 @@ jobs: with: jdk-matrix: '[ "8", "11", "17", "21" ]' ff-jdk: '21' - ff-goal: 'clean install site site:stage -P reporting -nsu' + ff-goal: 'clean install site site:stage -P reporting -nsu -T3' ff-site-goal: '-v' - verify-goal: 'clean install -nsu -P run-its' + verify-goal: 'clean install -nsu -P run-its -T3' verify-fail-fast: false # Investigation reasons: Some tests generate custom files, standard reports and logs. # Remove the line with `*-jvmRun*-events.bin` pattern if large streams should be investigated. diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml index 5b611d1547..a40db5b600 100644 --- a/.mvn/extensions.xml +++ b/.mvn/extensions.xml @@ -17,11 +17,11 @@ ~ under the License. --> - + - - - - - - + + eu.maveniverse.maven.turbo-builder + maven-turbo-builder + 0.13 + diff --git a/.mvn/maven.config b/.mvn/maven.config index 1d60613205..f4da9f74cb 100644 --- a/.mvn/maven.config +++ b/.mvn/maven.config @@ -1 +1,2 @@ --Daether.dependencyCollector.impl=bf \ No newline at end of file +-Daether.dependencyCollector.impl=bf +-bturbo \ No newline at end of file diff --git a/Jenkinsfile b/Jenkinsfile index b32c4a6540..a138b0596f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -35,7 +35,7 @@ final def mavens = ['3.x.x'] // final def jdks = [21, 17, 11, 8] final def jdks = [21] -final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its'] +final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its', '-T2'] final def goals = ['clean', 'install'] final def goalsDepl = ['clean', 'deploy'] final Map stages = [:]