From f77821e3759247bf1e70567118209da40a15680e Mon Sep 17 00:00:00 2001 From: Simon Schrottner Date: Thu, 20 Nov 2025 13:09:28 +0100 Subject: [PATCH] build: run build in parallel Signed-off-by: Simon Schrottner --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0fbf892e0..9aef47930 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,4 +43,5 @@ jobs: ${{ runner.os }}${{ matrix.build.java }}-maven- - name: Maven Verify - run: mvn --batch-mode --activate-profiles e2e,${{ matrix.build.profile }} clean verify + # Run Maven build with e2e and specific profile, using parallel threads (if some provider decides to use a different toolchain version, this might break) + run: mvn -T 2C --batch-mode --activate-profiles e2e,${{ matrix.build.profile }} clean verify