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

View File

@ -22,8 +22,10 @@ jobs:
with:
distribution: 'zulu'
java-version: 21
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Build with Maven - only frontend
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
uses: codecov/codecov-action@v3
with: