Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci-rbe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
uses: ./.github/workflows/bazel.yml
with:
name: All RBE tests
rerun-with-debug: true
caching: false
ruby-version: jruby-10.0.0.0
run: ./scripts/github-actions/ci-build.sh ${{ github.event.inputs.disable_test_cache }}
6 changes: 5 additions & 1 deletion scripts/github-actions/rerun-failures.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ if [ ! -s build/failures/_run1.txt ]; then
exit 0
fi

base_cmd=$(echo "$RUN_CMD" | sed 's| //[^ ]*||g')
if [[ "$RUN_CMD" == *"/ci-build.sh"* ]]; then
base_cmd="bazel test --config=rbe-ci --build_tests_only --keep_going"
else
base_cmd=$(echo "$RUN_CMD" | sed 's| //[^ ]*||g')
fi
targets=$(tr '\n' ' ' < build/failures/_run1.txt)
echo "Rerunning tests: $base_cmd --test_env=SE_DEBUG=true --flaky_test_attempts=1 $targets"
set +e
Expand Down