Skip to content

Commit ee1120c

Browse files
committed
minor build tweaks
1 parent d73e49b commit ee1120c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci-rbe.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
upload-path: bazel-logs
3131
run: ./scripts/github-actions/ci-build.sh
3232
retry-remote:
33-
name: Retry Failed Tests on RBE
33+
name: Retry Failures on RBE
3434
needs: test
3535
if: always() && needs.test.result == 'failure' && github.repository_owner == 'seleniumhq' && startsWith(github.head_ref, 'renovate/') != true
3636
uses: ./.github/workflows/bazel.yml
3737
with:
38-
name: Retry failed tests
38+
name: Retries
3939
caching: false
4040
ruby-version: jruby-9.4.12.0
4141
download-name: bazel-logs
@@ -45,12 +45,12 @@ jobs:
4545
run: |
4646
./go retry_failed_tests "${BAZEL_LOG_FILE}" true
4747
retry-local:
48-
name: Retry Failed Tests on Local
48+
name: Retry Failures on Local
4949
needs: test
5050
if: always() && needs.test.result == 'failure' && github.repository_owner == 'seleniumhq' && startsWith(github.head_ref, 'renovate/') != true
5151
uses: ./.github/workflows/bazel.yml
5252
with:
53-
name: Retry failed tests
53+
name: Retries
5454
caching: false
5555
ruby-version: jruby-9.4.12.0
5656
browser: needs-xvfb

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ task :retry_failed_tests, [:log_file, :remote] do |_task, arguments|
301301
puts "Found #{failing_tests.size} failing tests; Retrying"
302302

303303
retry_args = arguments.extras + %w[--test_output=streamed --test_env DEBUG=true]
304-
retry_args << '--config=remote' if remote == 'true'
304+
retry_args << remote == 'true' ? '--config=remote' : '--pin_browsers'
305305

306306
retry_failures = false
307307
failing_tests.each do |failed_target|

0 commit comments

Comments
 (0)