소스 검색

avoid C++ flakes by decreasing coverage parallelism

Jan Tattermusch 6 년 전
부모
커밋
2108c0b6a7
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      tools/internal_ci/linux/grpc_coverage.sh

+ 4 - 4
tools/internal_ci/linux/grpc_coverage.sh

@@ -22,19 +22,19 @@ source tools/internal_ci/helper_scripts/prepare_build_linux_rc
 
 python tools/run_tests/run_tests.py \
    -l c c++ -x coverage_cpp/sponge_log.xml \
-   --use_docker -t -c gcov -j 8 || FAILED="true"
+   --use_docker -t -c gcov -j 2 || FAILED="true"
 
 python tools/run_tests/run_tests.py \
    -l python -x coverage_python/sponge_log.xml \
-   --use_docker -t -c gcov -j 8 || FAILED="true"
+   --use_docker -t -c gcov -j 2 || FAILED="true"
 
 python tools/run_tests/run_tests.py \
    -l ruby -x coverage_ruby/sponge_log.xml \
-   --use_docker -t -c gcov -j 8 || FAILED="true"
+   --use_docker -t -c gcov -j 2 || FAILED="true"
 
 python tools/run_tests/run_tests.py \
    -l php -x coverage_php/sponge_log.xml \
-   --use_docker -t -c gcov -j 8 || FAILED="true" 
+   --use_docker -t -c gcov -j 2 || FAILED="true"
   
 # HTML reports can't be easily displayed in GCS, so create a zip archive
 # and put it under reports directory to get it uploaded as an artifact.