feat: [Work in progress] Try Maven parallel builds. (#30454)

* feat: Try Maven parallel builds
This commit is contained in:
XinKeng 2024-04-19 15:07:38 +08:00 committed by GitHub
parent 6f80635f6c
commit 40dded74b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -22,8 +22,10 @@ jobs:
with: with:
distribution: 'zulu' distribution: 'zulu'
java-version: 21 java-version: 21
- name: Build with Maven - name: Build with Maven - only frontend
run: mvn -B package --file pom.xml run: mvn -T 1C -B package --file pom.xml -pl frontend
- name: Build with Maven - other
run: mvn -T 1C -B package --file pom.xml -pl '!frontend'
- name: Upload coverage reports to Codecov - name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3 uses: codecov/codecov-action@v3
with: with: