Skip to content

Commit a41c49a

Browse files
committed
Kepp build running with a single job
1 parent 42da5e5 commit a41c49a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/bazel-linux-build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929
shell: bash
3030
run: |
3131
if [ "${{ inputs.debug }}" = "true" ]; then
32-
bazel build ${{ inputs.target }} --sandbox_debug --verbose_failures
32+
bazel build ${{ inputs.target }} --verbose_failures --keep_going --jobs=1
3333
else
3434
bazel build ${{ inputs.target }} --config release
3535
fi

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ package: $(SWIFTLINT_EXECUTABLE)
147147
"$(OUTPUT_PACKAGE)"
148148

149149
bazel_test:
150-
bazel test --test_env=SKIP_INTEGRATION_TESTS=true --test_output=errors //Tests/...
150+
bazel test --test_env=SKIP_INTEGRATION_TESTS=true --test_output=errors --verbose_failures --keep_going --jobs=1 //Tests/...
151151

152152
bazel_test_tsan:
153153
bazel test --test_output=errors --build_tests_only --features=tsan --test_timeout=1000 //Tests/...

0 commit comments

Comments
 (0)