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 28bac91468a Revert "Allow CI unit test set 1 to run multi-threaded" 
(#16275)
28bac91468a is described below

commit 28bac91468a530d0ed11acfde1e5d7cd7b76f60f
Author: Song Fu <[email protected]>
AuthorDate: Thu Jul 3 11:31:12 2025 -0700

    Revert "Allow CI unit test set 1 to run multi-threaded" (#16275)
---
 .github/workflows/scripts/pr-tests/.pinot_tests_unit.sh | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh 
b/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh
index a17133eaab5..ccac6353b30 100755
--- a/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh
+++ b/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh
@@ -28,28 +28,27 @@ netstat -i
 # Unit Tests
 #   - 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)
+#   - tests for pinot-plugins should not be ran multi-threaded
 if [ "$RUN_TEST_SET" == "1" ]; then
-  mvn test -T 16 \
-      -am \
+  mvn test \
       -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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to