mirror of https://github.com/apache/druid.git
Speed up builds in few places (#17591)
This commit is contained in:
parent
78ce97ac95
commit
bf6b0fd9f9
|
@ -71,7 +71,7 @@ jobs:
|
||||||
if: ${{ matrix.java == '17' }}
|
if: ${{ matrix.java == '17' }}
|
||||||
# errorprone requires JDK 11+
|
# errorprone requires JDK 11+
|
||||||
# Strict compilation requires more than 2 GB
|
# Strict compilation requires more than 2 GB
|
||||||
run: ${MVN} clean -DstrictCompile compile test-compile --fail-at-end ${MAVEN_SKIP} ${MAVEN_SKIP_TESTS}
|
run: ${MVN} clean -DstrictCompile compile test-compile --fail-at-end ${MAVEN_SKIP} ${MAVEN_SKIP_TESTS} -T1C
|
||||||
|
|
||||||
- name: maven install
|
- name: maven install
|
||||||
if: ${{ matrix.java == '17' }}
|
if: ${{ matrix.java == '17' }}
|
||||||
|
|
2
it.sh
2
it.sh
|
@ -229,7 +229,7 @@ case $CMD in
|
||||||
usage
|
usage
|
||||||
;;
|
;;
|
||||||
"ci" )
|
"ci" )
|
||||||
mvn -q clean install dependency:go-offline -P dist $MAVEN_IGNORE
|
mvn -q clean install dependency:go-offline -P dist $MAVEN_IGNORE -T1C
|
||||||
;;
|
;;
|
||||||
"build" )
|
"build" )
|
||||||
mvn -B clean install -P dist $MAVEN_IGNORE -T1.0C $*
|
mvn -B clean install -P dist $MAVEN_IGNORE -T1.0C $*
|
||||||
|
|
Loading…
Reference in New Issue