Skip to content

Commit

Permalink
ci: enable parallel maven build
Browse files Browse the repository at this point in the history
  • Loading branch information
bbortt committed Oct 1, 2024
1 parent c6d6f3e commit 5f7a352
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ on:
- 'NOTICE'
push:
branches:
- main
paths-ignore:
- '**.adoc'
- '**.md'
Expand Down Expand Up @@ -56,5 +55,4 @@ jobs:
java -version
./mvnw -version
- name: Build Citrus
run: |
./mvnw --no-transfer-progress install
run: ./mvnw --no-transfer-progress -T1C install
3 changes: 1 addition & 2 deletions .github/workflows/lts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,4 @@ jobs:
java -version
./mvnw -version
- name: Build Citrus
run: |
./mvnw --no-transfer-progress -Djava.version=${{ matrix.version }} install
run: ./mvnw --no-transfer-progress -T1C -Djava.version=${{ matrix.version }} install

0 comments on commit 5f7a352

Please sign in to comment.