File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
.github/actions/bazel-linux-build Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ package: $(SWIFTLINT_EXECUTABLE)
147147 " $( OUTPUT_PACKAGE) "
148148
149149bazel_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
152152bazel_test_tsan :
153153 bazel test --test_output=errors --build_tests_only --features=tsan --test_timeout=1000 //Tests/...
You can’t perform that action at this time.
0 commit comments