Kepp build running with a single job

This commit is contained in:
Danny Mösch
2025-08-08 10:40:07 +02:00
parent 42da5e55c2
commit a41c49aff4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ runs:
shell: bash
run: |
if [ "${{ inputs.debug }}" = "true" ]; then
bazel build ${{ inputs.target }} --sandbox_debug --verbose_failures
bazel build ${{ inputs.target }} --verbose_failures --keep_going --jobs=1
else
bazel build ${{ inputs.target }} --config release
fi
+1 -1
View File
@@ -147,7 +147,7 @@ package: $(SWIFTLINT_EXECUTABLE)
"$(OUTPUT_PACKAGE)"
bazel_test:
bazel test --test_env=SKIP_INTEGRATION_TESTS=true --test_output=errors //Tests/...
bazel test --test_env=SKIP_INTEGRATION_TESTS=true --test_output=errors --verbose_failures --keep_going --jobs=1 //Tests/...
bazel_test_tsan:
bazel test --test_output=errors --build_tests_only --features=tsan --test_timeout=1000 //Tests/...