diff --git a/.github/workflows/bazel_test.yml b/.github/workflows/bazel_test.yml index eca5cf6f..c336f584 100644 --- a/.github/workflows/bazel_test.yml +++ b/.github/workflows/bazel_test.yml @@ -61,11 +61,11 @@ jobs: - name: Run all tests with default --config if: matrix.config == 'default' run: | - bazel test --build_tests_only --test_output=errors \ + bazel test --build_tests_only --test_output=errors --jobs $(nproc) \ -c ${{ matrix.compilation_mode }} -- //... -//centipede/... - name: Run end-to-end tests with --config=fuzztest if: matrix.config == 'fuzztest' run: | - bazel test --build_tests_only --test_output=errors \ + bazel test --build_tests_only --test_output=errors --jobs $(nproc) \ -c ${{ matrix.compilation_mode }} --config=fuzztest //e2e_tests:all