Skip to content

Commit 489a963

Browse files
authored
build: run build in parallel (#1652)
Signed-off-by: Simon Schrottner <[email protected]>
1 parent 1e9967d commit 489a963

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,5 @@ jobs:
4343
${{ runner.os }}${{ matrix.build.java }}-maven-
4444
4545
- name: Maven Verify
46-
run: mvn --batch-mode --activate-profiles e2e,${{ matrix.build.profile }} clean verify
46+
# Run Maven build with e2e and specific profile, using parallel threads (if some provider decides to use a different toolchain version, this might break)
47+
run: mvn -T 2C --batch-mode --activate-profiles e2e,${{ matrix.build.profile }} clean verify

0 commit comments

Comments
 (0)