feat: [Work in progress] Try Maven parallel builds. (#30454)
* feat: Try Maven parallel builds
This commit is contained in:
parent
6f80635f6c
commit
40dded74b3
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue