This is an automated email from the ASF dual-hosted git repository. jackie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push: new a66be4da97 Allow CI unit test set 1 to run multi-threaded (#16099) a66be4da97 is described below commit a66be4da974fafa2d50a7483e7f5569eb3368fc1 Author: Song Fu <131259315+songw...@users.noreply.github.com> AuthorDate: Mon Jun 16 14:55:46 2025 -0700 Allow CI unit test set 1 to run multi-threaded (#16099) --- .github/workflows/scripts/pr-tests/.pinot_tests_unit.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh b/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh index 19229c7078..a17133eaab 100755 --- a/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh +++ b/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh @@ -29,25 +29,27 @@ netstat -i # - TEST_SET#1 runs install and test together so the module list must ensure no additional modules were tested # due to the -am flag (include dependency modules) if [ "$RUN_TEST_SET" == "1" ]; then - mvn test \ + mvn test -T 16 \ + -am \ -pl 'pinot-spi' \ -pl 'pinot-segment-spi' \ -pl 'pinot-common' \ - -pl ':pinot-yammer' \ -pl 'pinot-core' \ -pl 'pinot-query-planner' \ -pl 'pinot-query-runtime' \ -P github-actions,codecoverage,no-integration-tests || exit 1 + fi if [ "$RUN_TEST_SET" == "2" ]; then + # These tests, if run multi-threaded, causes Develocity errors in CI mvn test \ + -am \ -pl '!pinot-spi' \ -pl '!pinot-segment-spi' \ -pl '!pinot-common' \ -pl '!pinot-core' \ -pl '!pinot-query-planner' \ -pl '!pinot-query-runtime' \ - -pl '!:pinot-yammer' \ -P github-actions,codecoverage,no-integration-tests || exit 1 fi --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org