Skip to content

[dotnet][rb][java][js][py] Automated Browser Version Update #16213

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from

Conversation

selenium-ci
Copy link
Member

@selenium-ci selenium-ci commented Aug 20, 2025

User description

This is an automated pull request to update pinned browsers and drivers

Merge after verify the new browser versions properly passing the tests and no bugs need to be filed


PR Type

Other


Description

  • Update Firefox stable from 141.0.3 to 142.0

  • Update Firefox beta from 142.0b9 to 143.0b1

  • Update Chrome from 139.0.7258.68 to 139.0.7258.138

  • Update corresponding SHA256 checksums for all browsers


Diagram Walkthrough

flowchart LR
  A["Firefox 141.0.3"] --> B["Firefox 142.0"]
  C["Firefox Beta 142.0b9"] --> D["Firefox Beta 143.0b1"]
  E["Chrome 139.0.7258.68"] --> F["Chrome 139.0.7258.138"]
  B --> G["Updated SHA256"]
  D --> G
  F --> G
Loading

File Walkthrough

Relevant files
Configuration changes
repositories.bzl
Browser version and checksum updates                                         

common/repositories.bzl

  • Update Firefox stable version from 141.0.3 to 142.0
  • Update Firefox beta version from 142.0b9 to 143.0b1
  • Update Chrome version from 139.0.7258.68 to 139.0.7258.138
  • Update SHA256 checksums for all browser downloads
+16/-16 

@selenium-ci selenium-ci added the B-build Includes scripting, bazel and CI integrations label Aug 20, 2025
Copy link
Contributor

PR Reviewer Guide 🔍

Here are some key observations to aid the review process:

⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
🧪 No relevant tests
🔒 No security concerns identified
⚡ Recommended focus areas for review

Integrity Check

Verify that all updated SHA256 hashes match the downloaded artifacts for the new URLs across Linux/Mac Firefox stable/beta and Chrome/chromedriver to prevent fetch failures in CI.

http_archive(
    name = "linux_firefox",
    url = "https://ftp.mozilla.org/pub/firefox/releases/142.0/linux-x86_64/en-US/firefox-142.0.tar.xz",
    sha256 = "da8897a6a618e73878e6022a2bece76af509c304c73ae5c53dc523d35cb7bae6",
    build_file_content = """
Platform Parity

Ensure macOS and Linux URLs for Firefox beta and Chrome/chromedriver are aligned to the same versions and that downstream rules using these repositories don’t assume old paths or app names.

    dmg_archive(
        name = "mac_beta_firefox",
        url = "https://ftp.mozilla.org/pub/firefox/releases/143.0b1/mac/en-US/Firefox%20143.0b1.dmg",
        sha256 = "b111b0f4fea5f35280f2aae1e3590613412b57dcb87335d17abf3be32e056675",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["Firefox.app"])

js_library(
    name = "firefox-js",
    data = glob(["Firefox.app/**/*"]),
)
""",
    )

    http_archive(
        name = "linux_geckodriver",
        url = "https://github.com/mozilla/geckodriver/releases/download/v0.36.0/geckodriver-v0.36.0-linux64.tar.gz",
        sha256 = "0bde38707eb0a686a20c6bd50f4adcc7d60d4f73c60eb83ee9e0db8f65823e04",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["geckodriver"])

js_library(
    name = "geckodriver-js",
    data = ["geckodriver"],
)
""",
    )

    http_archive(
        name = "mac_geckodriver",
        url = "https://github.com/mozilla/geckodriver/releases/download/v0.36.0/geckodriver-v0.36.0-macos.tar.gz",
        sha256 = "b5627bfc29801b8752c9f1e7699018963c39c076aab6576dc14fcb1ce7a256f6",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["geckodriver"])

js_library(
    name = "geckodriver-js",
    data = ["geckodriver"],
)
""",
    )

    pkg_archive(
        name = "mac_edge",
        url = "https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/4d599f34-3ef7-4f04-bd4b-6f35be25008c/MicrosoftEdge-139.0.3405.102.pkg",
        sha256 = "c5edb687ac110cabedf989706a6e9fade4f30375ef194f155fade830fc8837be",
        move = {
            "MicrosoftEdge-139.0.3405.102.pkg/Payload/Microsoft Edge.app": "Edge.app",
        },
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["Edge.app"])

js_library(
    name = "edge-js",
    data = glob(["Edge.app/**/*"]),
)
""",
    )

    deb_archive(
        name = "linux_edge",
        url = "https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_139.0.3405.102-1_amd64.deb",
        sha256 = "ad8e90dec3080065ff64a395bf04a5e9cc6adb8481d4f8829fb6f5a4c5cc7a9b",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "files",
    srcs = glob(["**/*"]),
)

exports_files(["opt/microsoft/msedge/microsoft-edge"])

js_library(
    name = "edge-js",
    data = [":files"],
)
""",
    )

    http_archive(
        name = "linux_edgedriver",
        url = "https://msedgedriver.microsoft.com/139.0.3405.102/edgedriver_linux64.zip",
        sha256 = "e092178901c011ccfddc0556193742a01f206d71b5bb1a12cc1ba7a243262fc2",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["msedgedriver"])

js_library(
    name = "msedgedriver-js",
    data = ["msedgedriver"],
)
""",
    )

    http_archive(
        name = "mac_edgedriver",
        url = "https://msedgedriver.microsoft.com/139.0.3405.102/edgedriver_mac64.zip",
        sha256 = "98aa637081061ea610c1f70be09fdea6b5f5b3a46c94a87ca291e2285bad1328",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["msedgedriver"])

js_library(
    name = "msedgedriver-js",
    data = ["msedgedriver"],
)
""",
    )

    http_archive(
        name = "linux_chrome",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.138/linux64/chrome-linux64.zip",
        sha256 = "a28ed679a017b8042747d81f7855cb86cc71402b268fc843b57533e69a835a17",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "files",
    srcs = glob(["**/*"]),
)

exports_files(["chrome-linux64/chrome"])

js_library(
    name = "chrome-js",
    data = [":files"],
)
""",
    )
    http_archive(
        name = "mac_chrome",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.138/mac-x64/chrome-mac-x64.zip",
        sha256 = "e910233cc746230abb5d9c855a191fceee0729e299ac15cb562260be302fa64b",
        strip_prefix = "chrome-mac-x64",
        patch_cmds = [
            "mv 'Google Chrome for Testing.app' Chrome.app",
            "mv 'Chrome.app/Contents/MacOS/Google Chrome for Testing' Chrome.app/Contents/MacOS/Chrome",
        ],
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["Chrome.app"])

js_library(
    name = "chrome-js",
    data = glob(["Chrome.app/**/*"]),
)
""",
    )
    http_archive(
        name = "linux_chromedriver",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.138/linux64/chromedriver-linux64.zip",
        sha256 = "b5940d93d97da3d98dba0d4f5a67246b839a8e5634d69a6d625d0ad54bed8bb2",
        strip_prefix = "chromedriver-linux64",

Copy link
Contributor

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
High-level
Verify platform parity changes

Bumping Firefox stable/beta and Chrome plus corresponding drivers can introduce
capability or protocol changes that break bindings across languages
(rb/java/js/py) or OS-specific packaging (mac dmg rename, linux tar layout).
Before merging, run the full cross-language, cross-platform CI matrix (including
arm64 where applicable) to confirm no regressions in launch arguments, binary
paths, or driver-browser version compatibility, especially around macOS app
bundle names and chromedriver protocol alignment.

Examples:

common/repositories.bzl [221-229]
    http_archive(
        name = "mac_chrome",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.138/mac-x64/chrome-mac-x64.zip",
        sha256 = "e910233cc746230abb5d9c855a191fceee0729e299ac15cb562260be302fa64b",
        strip_prefix = "chrome-mac-x64",
        patch_cmds = [
            "mv 'Google Chrome for Testing.app' Chrome.app",
            "mv 'Chrome.app/Contents/MacOS/Google Chrome for Testing' Chrome.app/Contents/MacOS/Chrome",
        ],

Solution Walkthrough:

Before:

# PR Merge Process
1. Update browser/driver versions and hashes.
2. Create Pull Request.
3. Merge after basic checks.

After:

# PR Merge Process
1. Update browser/driver versions and hashes.
2. Create Pull Request.
3. Run full cross-platform/language CI matrix.
4. Specifically verify against regressions in:
   - Binary paths and launch arguments
   - OS-specific packaging (e.g., macOS .app structure)
   - Driver-to-browser protocol compatibility
5. Merge once all checks pass.
Suggestion importance[1-10]: 9

__

Why: This suggestion correctly identifies the main risk of this PR—potential breakages due to dependency updates—and provides specific, actionable areas to verify, which is crucial for maintaining stability across platforms.

High
General
Remove fragile chromedriver strip_prefix

Chromedriver zips occasionally change the top-level directory name or include
nested folders. Hard-coding strip_prefix = "chromedriver-linux64" risks failing
the repository fetch. Remove the strip_prefix and handle the location in the
generated BUILD or with a patch command.

common/repositories.bzl [242-247]

 http_archive(
     name = "linux_chromedriver",
     url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.138/linux64/chromedriver-linux64.zip",
     sha256 = "b5940d93d97da3d98dba0d4f5a67246b839a8e5634d69a6d625d0ad54bed8bb2",
-    strip_prefix = "chromedriver-linux64",
     build_file_content = """
  • Apply / Chat
Suggestion importance[1-10]: 6

__

Why: The suggestion correctly identifies that hardcoding strip_prefix can be brittle and proposes removing it, which improves the robustness and maintainability of the build configuration.

Low
Make mac chromedriver fetch resilient

The mac chromedriver archive may ship with chromedriver-mac-arm64 on Apple
Silicon or change folder names across builds. Using a fixed strip_prefix can
cause fetch failures on different runners. Drop strip_prefix and let the archive
extract as-is; refer to discovered paths in build files if needed.

common/repositories.bzl [260-265]

 http_archive(
     name = "mac_chromedriver",
     url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.138/mac-x64/chromedriver-mac-x64.zip",
     sha256 = "c6e2a630d72e0017649d54f29a93caa617fac0f846c23b2bd6494d8fe92e4479",
-    strip_prefix = "chromedriver-mac-x64",
     build_file_content = """
  • Apply / Chat
Suggestion importance[1-10]: 6

__

Why: The suggestion correctly identifies that hardcoding strip_prefix can be brittle and proposes removing it, which improves the robustness and maintainability of the build configuration.

Low
  • More

Copy link
Contributor

CI Feedback 🧐

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: Ruby / Local Tests (firefox, windows) / Local Tests (firefox, windows)

Failed stage: Run Bazel [❌]

Failed test name: Selenium::WebDriver::Manager cookie management sameSite does not allow adding with value None when secure is false

Failure summary:

The action failed because the Bazel test target
//rb/spec/integration/selenium/webdriver:manager-firefox failed in all 3 attempts. RSpec output
shows a single failing example:
- Failure: “Selenium::WebDriver::Manager cookie management sameSite
does not allow adding with value None when secure is false”
- Details: The test was expected to be
pending due to a Firefox/geckodriver issue (mozilla/geckodriver#1842), but
it did not raise an error and thus failed with message: “Expected pending 'Test guarded; Guarded by
{:browser=>:firefox, :reason=>"https://github.com/mozilla/geckodriver/issues/1842"};' to fail. No
error was raised.”
- Location: ./rb/spec/integration/selenium/webdriver/manager_spec.rb:171
As a
result, Bazel reported: “Build completed, 1 test FAILED,” causing the workflow to exit with code 1.

Relevant error logs:
1:  ##[group]Runner Image Provisioner
2:  Hosted Compute Agent
...

291:  "D:/_bazel-repo"
292:  ]
293:  }
294:  }
295:  ##[endgroup]
296:  ##[group]Restore cache for bazelisk
297:  Cache hit for: setup-bazel-2-win32-bazelisk-1c738f2c94b26698d42161fd2c2da70645e6a68eb05666a970f9d2c0143fbabb
298:  Received 8388608 of 52764173 (15.9%), 7.9 MBs/sec
299:  Received 52764173 of 52764173 (100.0%), 37.5 MBs/sec
300:  Cache Size: ~50 MB (52764173 B)
301:  [command]"C:\Program Files\Git\usr\bin\tar.exe" -xf D:/a/_temp/3f8b6d80-9023-4638-a8b5-068ebc83737c/cache.tzst -P -C D:/a/selenium/selenium --force-local --use-compress-program "zstd -d"
302:  Cache restored successfully
303:  Successfully restored cache from setup-bazel-2-win32-bazelisk-1c738f2c94b26698d42161fd2c2da70645e6a68eb05666a970f9d2c0143fbabb
304:  ##[endgroup]
305:  ##[group]Restore cache for disk-rb-firefox-windows-test
306:  Failed to restore disk-rb-firefox-windows-test cache
307:  ##[endgroup]
308:  ##[group]Restore cache for repository
309:  Cache hit for: setup-bazel-2-win32-repository-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff
310:  Received 134217728 of 204439390 (65.7%), 116.3 MBs/sec
311:  Received 204439390 of 204439390 (100.0%), 113.8 MBs/sec
312:  Cache Size: ~195 MB (204439390 B)
313:  [command]"C:\Program Files\Git\usr\bin\tar.exe" -xf D:/a/_temp/97bc108c-d0ab-4372-bfdf-e71538eafdd0/cache.tzst -P -C D:/a/selenium/selenium --force-local --use-compress-program "zstd -d"
314:  Cache restored successfully
315:  Successfully restored cache from setup-bazel-2-win32-repository-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff
316:  ##[endgroup]
317:  ##[group]Restore cache for external-rb-firefox-windows-test-manifest
318:  Failed to restore external-rb-firefox-windows-test-manifest cache
319:  ##[endgroup]
...

436:  ==> Locally signing trusted keys in keyring...
437:  -> Locally signed 5 keys.
438:  ==> Importing owner trust values...
439:  gpg: setting ownertrust to 4
440:  gpg: setting ownertrust to 4
441:  gpg: setting ownertrust to 4
442:  gpg: setting ownertrust to 4
443:  gpg: setting ownertrust to 4
444:  ==> Disabling revoked keys in keyring...
445:  -> Disabled 4 keys.
446:  ==> Updating trust database...
447:  gpg: marginals needed: 3  completes needed: 1  trust model: pgp
448:  gpg: depth: 0  valid:   1  signed:   5  trust: 0-, 0q, 0n, 0m, 0f, 1u
449:  gpg: depth: 1  valid:   5  signed:   6  trust: 0-, 0q, 0n, 5m, 0f, 0u
450:  gpg: depth: 2  valid:   3  signed:   2  trust: 3-, 0q, 0n, 0m, 0f, 0u
451:  gpg: error retrieving '[email protected]' via WKD: No data
452:  gpg: error reading key: No data
453:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
454:  gpg: key F40D263ECA25678A: "Alexey Pavlov (Alexpux) <[email protected]>" not changed
455:  gpg: Total number processed: 1
456:  gpg:              unchanged: 1
457:  gpg: error retrieving '[email protected]' via WKD: No data
458:  gpg: error reading key: No data
459:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
460:  gpg: key 790AE56A1D3CFDDC: "David Macek (MSYS2 master key) <[email protected]>" not changed
461:  gpg: Total number processed: 1
462:  gpg:              unchanged: 1
463:  gpg: error retrieving '[email protected]' via WKD: No data
464:  gpg: error reading key: No data
465:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
466:  gpg: key DA7EF2ABAEEA755C: "Martell Malone (martell) <[email protected]>" not changed
467:  gpg: Total number processed: 1
468:  gpg:              unchanged: 1
469:  gpg: error retrieving '[email protected]' via WKD: No data
470:  gpg: error reading key: No data
471:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
472:  gpg: key 755B8182ACD22879: "Christoph Reiter (MSYS2 master key) <[email protected]>" not changed
473:  gpg: Total number processed: 1
474:  gpg:              unchanged: 1
475:  gpg: error retrieving '[email protected]' via WKD: No data
476:  gpg: error reading key: No data
477:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
478:  gpg: key 9F418C233E652008: "Ignacio Casal Quinteiro <[email protected]>" not changed
479:  gpg: Total number processed: 1
480:  gpg:              unchanged: 1
481:  gpg: error retrieving '[email protected]' via WKD: No data
482:  gpg: error reading key: No data
483:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
484:  gpg: key BBE514E53E0D0813: "Ray Donnelly (MSYS2 Developer - master key) <[email protected]>" not changed
485:  gpg: Total number processed: 1
486:  gpg:              unchanged: 1
487:  gpg: error retrieving '[email protected]' via WKD: No data
488:  gpg: error reading key: No data
489:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
490:  gpg: key 5F92EFC1A47D45A1: "Alexey Pavlov (Alexpux) <[email protected]>" not changed
491:  gpg: Total number processed: 1
492:  gpg:              unchanged: 1
493:  gpg: error retrieving '[email protected]' via WKD: No data
494:  gpg: error reading key: No data
495:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
496:  gpg: key 974C8BE49078F532: "David Macek <[email protected]>" 3 new signatures
497:  gpg: key 974C8BE49078F532: "David Macek <[email protected]>" 1 signature cleaned
498:  gpg: Total number processed: 1
499:  gpg:         new signatures: 3
500:  gpg:     signatures cleaned: 1
501:  gpg: marginals needed: 3  completes needed: 1  trust model: pgp
502:  gpg: depth: 0  valid:   1  signed:   5  trust: 0-, 0q, 0n, 0m, 0f, 1u
503:  gpg: depth: 1  valid:   5  signed:   7  trust: 0-, 0q, 0n, 5m, 0f, 0u
504:  gpg: depth: 2  valid:   4  signed:   2  trust: 4-, 0q, 0n, 0m, 0f, 0u
505:  gpg: next trustdb check due at 2025-12-16
506:  gpg: error retrieving '[email protected]' via WKD: No data
507:  gpg: error reading key: No data
508:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
509:  gpg: key FA11531AA0AA7F57: "Christoph Reiter (MSYS2 development key) <[email protected]>" not changed
510:  gpg: Total number processed: 1
511:  gpg:              unchanged: 1
512:  gpg: error retrieving '[email protected]' via WKD: Unknown host
513:  gpg: error reading key: Unknown host
514:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
515:  gpg: key 794DCF97F93FC717: "Martell Malone (martell) <[email protected]>" not changed
516:  gpg: Total number processed: 1
517:  gpg:              unchanged: 1
518:  gpg: error retrieving '[email protected]' via WKD: No data
519:  gpg: error reading key: No data
520:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
521:  gpg: key D595C9AB2C51581E: "Martell Malone (MSYS2 Developer) <[email protected]>" not changed
522:  gpg: Total number processed: 1
523:  gpg:              unchanged: 1
524:  gpg: error retrieving '[email protected]' via WKD: No data
525:  gpg: error reading key: No data
526:  gpg: refreshing 1 key from hkps://keyserver.ubuntu.com
...

615:  installing mingw-w64-ucrt-x86_64-nghttp3...
616:  installing mingw-w64-ucrt-x86_64-curl...
617:  installing mingw-w64-ucrt-x86_64-libyaml...
618:  �[32mAnalyzing:�[0m 28 targets (351 packages loaded, 9202 targets configured)
619:  �[32mAnalyzing:�[0m 28 targets (352 packages loaded, 9202 targets configured)
620:  �[32mAnalyzing:�[0m 28 targets (352 packages loaded, 43011 targets configured)
621:  �[32m[1 / 1]�[0m no actions running
622:  �[32mAnalyzing:�[0m 28 targets (352 packages loaded, 43014 targets configured)
623:  �[32m[4 / 27]�[0m Creating source manifest for //rb/spec/integration/selenium/webdriver/firefox:service-firefox; 0s local ... (3 actions running)
624:  �[32mINFO: �[0mAnalyzed 28 targets (352 packages loaded, 43014 targets configured).
625:  �[32m[12 / 44]�[0m Writing repo mapping manifest for //rb/spec/integration/selenium/webdriver/firefox:profile-firefox; 0s local ... (2 actions, 1 running)
626:  �[32m[90 / 424]�[0m Writing file external/protobuf+/src/google/protobuf/io/gzip_stream.lib-2.params [for tool]; 0s local ... (4 actions, 3 running)
627:  �[32m[225 / 1,047]�[0m [Prepa] Creating source manifest for //rb/spec/integration/selenium/webdriver:shadow_root-firefox ... (2 actions, 0 running)
628:  �[32m[234 / 1,056]�[0m [Prepa] Creating source manifest for //rb/spec/integration/selenium/webdriver/bidi:script-firefox ... (3 actions, 0 running)
629:  �[32m[272 / 1,059]�[0m Creating source manifest for //rb/spec/integration/selenium/webdriver/bidi:network-firefox; 0s local
630:  �[32m[336 / 1,071]�[0m Extracting interface for jar external/com_google_errorprone_error_prone_annotations/error_prone_annotations-2.1.3.jar [for tool]; 0s local, disk-cache ... (2 actions, 1 running)
631:  �[32m[346 / 1,078]�[0m JavaToolchainCompileClasses external/rules_java+/toolchains/platformclasspath_classes [for tool]; 1s local, disk-cache ... (3 actions running)
632:  �[32mINFO: �[0mFrom Compiling third_party/utf8_range/utf8_range.c [for tool]:
633:  external/protobuf+/third_party/utf8_range/utf8_range.c(38): warning C4141: 'inline': used more than once
634:  external/protobuf+/third_party/utf8_range/utf8_range.c(45): warning C4141: 'inline': used more than once
635:  external/protobuf+/third_party/utf8_range/utf8_range.c(49): warning C4141: 'inline': used more than once
636:  external/protobuf+/third_party/utf8_range/utf8_range.c(178): warning C4141: 'inline': used more than once
637:  �[32m[352 / 1,081]�[0m Compiling absl/base/log_severity.cc [for tool]; 1s local, disk-cache ... (4 actions running)
638:  �[32mINFO: �[0mFrom Compiling absl/log/internal/nullguard.cc [for tool]:
639:  cl : Command line warning D9002 : ignoring unknown option '-std=c++14'
640:  �[32m[358 / 1,087]�[0m Compiling absl/base/log_severity.cc [for tool]; 1s local, disk-cache ... (4 actions, 3 running)
641:  �[32mINFO: �[0mFrom Compiling absl/base/log_severity.cc [for tool]:
642:  cl : Command line warning D9002 : ignoring unknown option '-std=c++14'
643:  �[32mINFO: �[0mFrom Compiling absl/base/internal/strerror.cc [for tool]:
644:  cl : Command line warning D9002 : ignoring unknown option '-std=c++14'
...

2015:  �[32m[1,097 / 1,114]�[0m 4 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 47s local, disk-cache ... (4 actions, 1 running)
2016:  �[32m[1,097 / 1,114]�[0m 4 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 57s local, disk-cache ... (4 actions, 1 running)
2017:  �[32m[1,097 / 1,114]�[0m 4 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 58s local, disk-cache ... (4 actions, 2 running)
2018:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-firefox (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-firefox/test_attempts/attempt_2.log)
2019:  �[32m[1,097 / 1,114]�[0m 4 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 60s local, disk-cache ... (4 actions, 2 running)
2020:  �[32m[1,097 / 1,114]�[0m 4 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 61s local, disk-cache ... (4 actions, 2 running)
2021:  �[32m[1,097 / 1,114]�[0m 4 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 66s local, disk-cache ... (4 actions, 3 running)
2022:  �[32m[1,098 / 1,114]�[0m 5 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 68s local, disk-cache ... (4 actions, 2 running)
2023:  �[32m[1,098 / 1,114]�[0m 5 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 69s local, disk-cache ... (4 actions, 2 running)
2024:  �[32m[1,099 / 1,114]�[0m 6 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 70s local, disk-cache ... (4 actions, 1 running)
2025:  �[32m[1,099 / 1,114]�[0m 6 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 71s local, disk-cache ... (4 actions, 1 running)
2026:  �[32m[1,099 / 1,114]�[0m 6 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 81s local, disk-cache ... (4 actions, 1 running)
2027:  �[32m[1,099 / 1,114]�[0m 6 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-firefox; 84s local, disk-cache ... (4 actions, 2 running)
2028:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-firefox (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-firefox/test.log)
2029:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-firefox:
2030:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-firefox (Summary)
2031:  Running Ruby specs:
...

2043:  Selenium::WebDriver::Manager
2044:  cookie management
2045:  sets correct defaults
2046:  sets samesite property of Lax by default (PENDING: Test guarded; Guarded by {:browser=>:firefox, :reason=>"https://github.com/mozilla/geckodriver/issues/1841"};)
2047:  respects path
2048:  respects setting on domain from a subdomain (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on site with subdomains"};)
2049:  does not allow setting on a different domain
2050:  does not allow setting on a subdomain from parent domain (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can not run on our test server; needs subdomains"};)
2051:  is not visible to javascript when http_only is true
2052:  does not add secure cookie when http (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Cannot be tested on localhost"};)
2053:  adds secure cookie when https (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};)
2054:  gets one
2055:  gets all
2056:  deletes one
2057:  deletes all
2058:  throws error when fetching non-existent cookie
2059:  throws an error when cookie name is an empty string
2060:  throws an error when cookie name is a nil string
2061:  allows deleting a cookies using a symbol
2062:  sameSite
2063:  allows adding with value Strict
2064:  allows adding with value Lax
2065:  allows adding with value None (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};)
2066:  does not allow adding with value None when secure is false (FAILED - 1)
2067:  expiration
2068:  allows adding with DateTime value
2069:  allows adding with Time value
2070:  allows adding with Number value
2071:  does not allow adding when value is in the past
2072:  Pending: (Failures listed here are expected and do not affect your suite's status)
2073:  1) Selenium::WebDriver::Manager cookie management sets samesite property of Lax by default
2074:  # Test guarded; Guarded by {:browser=>:firefox, :reason=>"https://github.com/mozilla/geckodriver/issues/1841"};
2075:  Got 1 failure:
2076:  1.1) Failure/Error: expect(driver.manage.cookie_named('samesite')[:same_site]).to eq('Lax')
2077:  expected: "Lax"
...

2083:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:70
2084:  3) Selenium::WebDriver::Manager cookie management does not allow setting on a subdomain from parent domain
2085:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can not run on our test server; needs subdomains"};
2086:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:96
2087:  4) Selenium::WebDriver::Manager cookie management does not add secure cookie when http
2088:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Cannot be tested on localhost"};
2089:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:117
2090:  5) Selenium::WebDriver::Manager cookie management adds secure cookie when https
2091:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};
2092:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:130
2093:  6) Selenium::WebDriver::Manager cookie management sameSite allows adding with value None
2094:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};
2095:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:158
2096:  Failures:
2097:  1) Selenium::WebDriver::Manager cookie management sameSite does not allow adding with value None when secure is false FIXED
2098:  Expected pending 'Test guarded; Guarded by {:browser=>:firefox, :reason=>"https://github.com/mozilla/geckodriver/issues/1842"};' to fail. No error was raised.
2099:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:171
2100:  Finished in 10.73 seconds (files took 0.99662 seconds to load)
2101:  25 examples, 1 failure, 6 pending
2102:  Failed examples:
2103:  rspec ./rb/spec/integration/selenium/webdriver/manager_spec.rb:171 # Selenium::WebDriver::Manager cookie management sameSite does not allow adding with value None when secure is false
...

2114:  Selenium::WebDriver::Manager
2115:  cookie management
2116:  sets correct defaults
2117:  sets samesite property of Lax by default (PENDING: Test guarded; Guarded by {:browser=>:firefox, :reason=>"https://github.com/mozilla/geckodriver/issues/1841"};)
2118:  respects path
2119:  respects setting on domain from a subdomain (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on site with subdomains"};)
2120:  does not allow setting on a different domain
2121:  does not allow setting on a subdomain from parent domain (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can not run on our test server; needs subdomains"};)
2122:  is not visible to javascript when http_only is true
2123:  does not add secure cookie when http (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Cannot be tested on localhost"};)
2124:  adds secure cookie when https (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};)
2125:  gets one
2126:  gets all
2127:  deletes one
2128:  deletes all
2129:  throws error when fetching non-existent cookie
2130:  throws an error when cookie name is an empty string
2131:  throws an error when cookie name is a nil string
2132:  allows deleting a cookies using a symbol
2133:  sameSite
2134:  allows adding with value Strict
2135:  allows adding with value Lax
2136:  allows adding with value None (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};)
2137:  does not allow adding with value None when secure is false (FAILED - 1)
2138:  expiration
2139:  allows adding with DateTime value
2140:  allows adding with Time value
2141:  allows adding with Number value
2142:  does not allow adding when value is in the past
2143:  Pending: (Failures listed here are expected and do not affect your suite's status)
2144:  1) Selenium::WebDriver::Manager cookie management sets samesite property of Lax by default
2145:  # Test guarded; Guarded by {:browser=>:firefox, :reason=>"https://github.com/mozilla/geckodriver/issues/1841"};
2146:  Got 1 failure:
2147:  1.1) Failure/Error: expect(driver.manage.cookie_named('samesite')[:same_site]).to eq('Lax')
2148:  expected: "Lax"
...

2154:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:70
2155:  3) Selenium::WebDriver::Manager cookie management does not allow setting on a subdomain from parent domain
2156:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can not run on our test server; needs subdomains"};
2157:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:96
2158:  4) Selenium::WebDriver::Manager cookie management does not add secure cookie when http
2159:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Cannot be tested on localhost"};
2160:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:117
2161:  5) Selenium::WebDriver::Manager cookie management adds secure cookie when https
2162:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};
2163:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:130
2164:  6) Selenium::WebDriver::Manager cookie management sameSite allows adding with value None
2165:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};
2166:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:158
2167:  Failures:
2168:  1) Selenium::WebDriver::Manager cookie management sameSite does not allow adding with value None when secure is false FIXED
2169:  Expected pending 'Test guarded; Guarded by {:browser=>:firefox, :reason=>"https://github.com/mozilla/geckodriver/issues/1842"};' to fail. No error was raised.
2170:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:171
2171:  Finished in 10.87 seconds (files took 0.99351 seconds to load)
2172:  25 examples, 1 failure, 6 pending
2173:  Failed examples:
2174:  rspec ./rb/spec/integration/selenium/webdriver/manager_spec.rb:171 # Selenium::WebDriver::Manager cookie management sameSite does not allow adding with value None when secure is false
...

2185:  Selenium::WebDriver::Manager
2186:  cookie management
2187:  sets correct defaults
2188:  sets samesite property of Lax by default (PENDING: Test guarded; Guarded by {:browser=>:firefox, :reason=>"https://github.com/mozilla/geckodriver/issues/1841"};)
2189:  respects path
2190:  respects setting on domain from a subdomain (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on site with subdomains"};)
2191:  does not allow setting on a different domain
2192:  does not allow setting on a subdomain from parent domain (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can not run on our test server; needs subdomains"};)
2193:  is not visible to javascript when http_only is true
2194:  does not add secure cookie when http (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Cannot be tested on localhost"};)
2195:  adds secure cookie when https (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};)
2196:  gets one
2197:  gets all
2198:  deletes one
2199:  deletes all
2200:  throws error when fetching non-existent cookie
2201:  throws an error when cookie name is an empty string
2202:  throws an error when cookie name is a nil string
2203:  allows deleting a cookies using a symbol
2204:  sameSite
2205:  allows adding with value Strict
2206:  allows adding with value Lax
2207:  allows adding with value None (PENDING: Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};)
2208:  does not allow adding with value None when secure is false (FAILED - 1)
2209:  expiration
2210:  allows adding with DateTime value
2211:  allows adding with Time value
2212:  allows adding with Number value
2213:  does not allow adding when value is in the past
2214:  Pending: (Failures listed here are expected and do not affect your suite's status)
2215:  1) Selenium::WebDriver::Manager cookie management sets samesite property of Lax by default
2216:  # Test guarded; Guarded by {:browser=>:firefox, :reason=>"https://github.com/mozilla/geckodriver/issues/1841"};
2217:  Got 1 failure:
2218:  1.1) Failure/Error: expect(driver.manage.cookie_named('samesite')[:same_site]).to eq('Lax')
2219:  expected: "Lax"
...

2225:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:70
2226:  3) Selenium::WebDriver::Manager cookie management does not allow setting on a subdomain from parent domain
2227:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can not run on our test server; needs subdomains"};
2228:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:96
2229:  4) Selenium::WebDriver::Manager cookie management does not add secure cookie when http
2230:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Cannot be tested on localhost"};
2231:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:117
2232:  5) Selenium::WebDriver::Manager cookie management adds secure cookie when https
2233:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};
2234:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:130
2235:  6) Selenium::WebDriver::Manager cookie management sameSite allows adding with value None
2236:  # Test does not apply to this configuration; Guarded by {:driver=>:none, :reason=>"Can only be tested on https site"};
2237:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:158
2238:  Failures:
2239:  1) Selenium::WebDriver::Manager cookie management sameSite does not allow adding with value None when secure is false FIXED
2240:  Expected pending 'Test guarded; Guarded by {:browser=>:firefox, :reason=>"https://github.com/mozilla/geckodriver/issues/1842"};' to fail. No error was raised.
2241:  # ./rb/spec/integration/selenium/webdriver/manager_spec.rb:171
2242:  Finished in 11.53 seconds (files took 1.27 seconds to load)
2243:  25 examples, 1 failure, 6 pending
2244:  Failed examples:
2245:  rspec ./rb/spec/integration/selenium/webdriver/manager_spec.rb:171 # Selenium::WebDriver::Manager cookie management sameSite does not allow adding with value None when secure is false
2246:  ================================================================================
2247:  �[32m[1,100 / 1,114]�[0m 7 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-firefox; 17s disk-cache ... (4 actions, 1 running)
2248:  �[32m[1,100 / 1,114]�[0m 7 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-firefox; 16s disk-cache ... (4 actions, 1 running)
2249:  �[32m[1,100 / 1,114]�[0m 7 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-firefox; 6s local, disk-cache ... (4 actions, 1 running)
2250:  �[32m[1,100 / 1,114]�[0m 7 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-firefox; 11s local, disk-cache ... (4 actions, 1 running)
2251:  �[32m[1,100 / 1,114]�[0m 7 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-firefox; 16s local, disk-cache ... (4 actions, 1 running)
2252:  �[32m[1,100 / 1,114]�[0m 7 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-firefox; 31s local, disk-cache ... (4 actions, 2 running)
2253:  �[32m[1,101 / 1,114]�[0m 8 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:listener-firefox; 27s ... (4 actions, 1 running)
2254:  �[32m[1,101 / 1,114]�[0m 8 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:listener-firefox; 36s ... (4 actions, 1 running)
2255:  �[32m[1,101 / 1,114]�[0m 8 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:listener-firefox; 38s ... (4 actions, 1 running)
2256:  �[32m[1,101 / 1,114]�[0m 8 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:element-firefox; 46s ... (4 actions, 2 running)
2257:  �[32m[1,102 / 1,114]�[0m 9 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:element-firefox; 48s ... (4 actions, 1 running)
2258:  �[32m[1,102 / 1,114]�[0m 9 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-firefox; 25s ... (4 actions, 2 running)
2259:  �[32m[1,103 / 1,114]�[0m 10 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-firefox; 26s ... (4 actions, 1 running)
2260:  �[32m[1,103 / 1,114]�[0m 10 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-firefox; 14s disk-cache ... (4 actions, 2 running)
2261:  �[32m[1,104 / 1,114]�[0m 11 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-firefox; 8s disk-cache ... (4 actions, 1 running)
2262:  �[32m[1,104 / 1,114]�[0m 11 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-firefox; 9s disk-cache ... (4 actions, 1 running)
2263:  �[32m[1,104 / 1,114]�[0m 11 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-firefox; 11s local, disk-cache ... (4 actions, 1 running)
2264:  �[32m[1,104 / 1,114]�[0m 11 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-firefox; 12s local, disk-cache ... (4 actions, 1 running)
2265:  �[32m[1,104 / 1,114]�[0m 11 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-firefox; 18s local, disk-cache ... (4 actions, 2 running)
2266:  �[32m[1,105 / 1,114]�[0m 12 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:shadow_root-firefox; 8s ... (4 actions, 1 running)
2267:  �[32m[1,105 / 1,114]�[0m 12 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:shadow_root-firefox; 18s ... (4 actions, 1 running)
2268:  �[32m[1,106 / 1,114]�[0m 13 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:fedcm-firefox; 12s ... (4 actions, 1 running)
2269:  �[32m[1,106 / 1,114]�[0m 13 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:fedcm-firefox; 13s ... (4 actions, 1 running)
2270:  �[32m[1,106 / 1,114]�[0m 13 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:fedcm-firefox; 14s ... (4 actions, 1 running)
2271:  �[32m[1,106 / 1,114]�[0m 13 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:fedcm-firefox; 23s ... (4 actions, 1 running)
2272:  �[32m[1,106 / 1,114]�[0m 13 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:fedcm-firefox; 27s ... (4 actions, 1 running)
2273:  �[32m[1,106 / 1,114]�[0m 13 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:fedcm-firefox; 53s ... (4 actions, 1 running)
2274:  �[32m[1,106 / 1,114]�[0m 13 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-firefox; 87s local, disk-cache ... (4 actions, 2 running)
2275:  �[32m[1,107 / 1,114]�[0m 14 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-firefox; 85s ... (4 actions, 1 running)
2276:  �[32m[1,107 / 1,114]�[0m 14 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-firefox; 96s ... (4 actions, 1 running)
2277:  �[32m[1,107 / 1,114]�[0m 14 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-firefox; 98s ... (4 actions, 1 running)
2278:  �[32m[1,107 / 1,114]�[0m 14 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-firefox; 126s ... (4 actions, 1 running)
2279:  �[32m[1,108 / 1,114]�[0m 15 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:driver-firefox; 115s ... (4 actions, 1 running)
2280:  �[32m[1,108 / 1,114]�[0m 15 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:driver-firefox; 116s ... (4 actions, 1 running)
2281:  �[32m[1,108 / 1,114]�[0m 15 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:driver-firefox; 125s ... (4 actions, 1 running)
2282:  �[32m[1,108 / 1,114]�[0m 15 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox; 42s ... (4 actions, 2 running)
2283:  �[32m[1,109 / 1,114]�[0m 16 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox; 43s ... (4 actions, 1 running)
2284:  �[32m[1,109 / 1,114]�[0m 16 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox; 44s ... (4 actions, 1 running)
2285:  �[32m[1,110 / 1,114]�[0m 17 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox; 2s disk-cache ... (4 actions, 1 running)
2286:  �[32m[1,110 / 1,114]�[0m 17 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox; 3s disk-cache ... (4 actions, 1 running)
2287:  �[32m[1,110 / 1,114]�[0m 17 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox; 13s disk-cache ... (4 actions, 1 running)
2288:  �[32m[1,110 / 1,114]�[0m 17 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:network-firefox; 18s ... (4 actions, 1 running)
2289:  �[32m[1,110 / 1,114]�[0m 17 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:network-firefox; 20s ... (4 actions, 1 running)
2290:  �[32m[1,110 / 1,114]�[0m 17 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox; 29s local, disk-cache ... (4 actions, 2 running)
2291:  �[32m[1,111 / 1,114]�[0m 18 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:driver-firefox; 15s ... (3 actions, 1 running)
2292:  �[32m[1,111 / 1,114]�[0m 18 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:target_locator-firefox; 14s ... (3 actions, 2 running)
2293:  �[32m[1,112 / 1,114]�[0m 19 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:target_locator-firefox; 15s ... (2 actions, 1 running)
2294:  �[32m[1,112 / 1,114]�[0m 19 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:target_locator-firefox; 25s ... (2 actions, 1 running)
2295:  �[32m[1,112 / 1,114]�[0m 19 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox; 15s local, disk-cache ... (2 actions running)
2296:  �[32m[1,113 / 1,114]�[0m 20 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-firefox; 1s local, disk-cache
2297:  �[32m[1,113 / 1,114]�[0m 20 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-firefox; 11s local, disk-cache
2298:  �[32m[1,113 / 1,114]�[0m 20 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-firefox; 15s local, disk-cache
2299:  �[32m[1,114 / 1,115]�[0m 21 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-firefox; 0s disk-cache
2300:  �[32m[1,114 / 1,115]�[0m 21 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:script-firefox
2301:  �[32m[1,114 / 1,115]�[0m 21 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-firefox; 1s local, disk-cache
2302:  �[32m[1,115 / 1,116]�[0m 22 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Prepa] Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox
2303:  �[32m[1,115 / 1,116]�[0m 22 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox; 0s disk-cache
2304:  �[32m[1,115 / 1,116]�[0m 22 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox
2305:  �[32m[1,115 / 1,116]�[0m 22 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox; 1s local, disk-cache
2306:  �[32m[1,115 / 1,116]�[0m 22 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox; 2s local, disk-cache
2307:  �[32m[1,116 / 1,117]�[0m 23 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-firefox; 1s disk-cache
2308:  �[32m[1,116 / 1,117]�[0m 23 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-firefox
2309:  �[32m[1,116 / 1,117]�[0m 23 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-firefox; 1s local, disk-cache
2310:  �[32m[1,116 / 1,117]�[0m 23 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-firefox; 2s local, disk-cache
2311:  �[32m[1,117 / 1,118]�[0m 24 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-firefox; 1s disk-cache
2312:  �[32m[1,117 / 1,118]�[0m 24 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-firefox
2313:  �[32m[1,117 / 1,118]�[0m 24 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-firefox; 1s local, disk-cache
2314:  �[32m[1,117 / 1,118]�[0m 24 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-firefox; 2s local, disk-cache
2315:  �[32m[1,118 / 1,119]�[0m 25 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-firefox; 1s disk-cache
2316:  �[32m[1,118 / 1,119]�[0m 25 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-firefox
2317:  �[32m[1,118 / 1,119]�[0m 25 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-firefox; 1s local, disk-cache
2318:  �[32m[1,119 / 1,120]�[0m 26 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Prepa] Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox
2319:  �[32m[1,119 / 1,120]�[0m 26 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox; 0s disk-cache
2320:  �[32m[1,119 / 1,120]�[0m 26 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox
2321:  �[32m[1,119 / 1,120]�[0m 26 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox; 1s local, disk-cache
2322:  �[32m[1,120 / 1,121]�[0m 27 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Prepa] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox
2323:  �[32m[1,120 / 1,121]�[0m 27 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox; 0s disk-cache
2324:  �[32m[1,120 / 1,121]�[0m 27 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox
2325:  �[32m[1,120 / 1,121]�[0m 27 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox; 1s local, disk-cache
2326:  �[32mINFO: �[0mFound 28 test targets...
2327:  �[32mINFO: �[0mElapsed time: 1468.900s, Critical Path: 845.80s
2328:  �[32mINFO: �[0m1121 processes: 1 disk cache hit, 497 internal, 549 local, 74 worker.
2329:  �[32mINFO: �[0mBuild completed, 1 test FAILED, 1121 total actions
2330:  //rb/spec/integration/selenium/webdriver:action_builder-firefox          �[0m�[32mPASSED�[0m in 31.6s
2331:  //rb/spec/integration/selenium/webdriver:bidi-firefox                    �[0m�[32mPASSED�[0m in 2.3s
2332:  //rb/spec/integration/selenium/webdriver:devtools-firefox                �[0m�[32mPASSED�[0m in 2.3s
2333:  //rb/spec/integration/selenium/webdriver:driver-firefox                  �[0m�[32mPASSED�[0m in 15.8s
2334:  //rb/spec/integration/selenium/webdriver:element-firefox                 �[0m�[32mPASSED�[0m in 31.6s
2335:  //rb/spec/integration/selenium/webdriver:error-firefox                   �[0m�[32mPASSED�[0m in 12.2s
2336:  //rb/spec/integration/selenium/webdriver:fedcm-firefox                   �[0m�[32mPASSED�[0m in 43.1s
...

2342:  //rb/spec/integration/selenium/webdriver:takes_screenshot-firefox        �[0m�[32mPASSED�[0m in 18.1s
2343:  //rb/spec/integration/selenium/webdriver:target_locator-firefox          �[0m�[32mPASSED�[0m in 15.9s
2344:  //rb/spec/integration/selenium/webdriver:timeout-firefox                 �[0m�[32mPASSED�[0m in 14.8s
2345:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-firefox   �[0m�[32mPASSED�[0m in 2.5s
2346:  //rb/spec/integration/selenium/webdriver:window-firefox                  �[0m�[32mPASSED�[0m in 13.3s
2347:  //rb/spec/integration/selenium/webdriver/bidi:browser-firefox            �[0m�[32mPASSED�[0m in 2.3s
2348:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox   �[0m�[32mPASSED�[0m in 2.4s
2349:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-firefox      �[0m�[32mPASSED�[0m in 2.4s
2350:  //rb/spec/integration/selenium/webdriver/bidi:network-firefox            �[0m�[32mPASSED�[0m in 2.3s
2351:  //rb/spec/integration/selenium/webdriver/bidi:script-firefox             �[0m�[32mPASSED�[0m in 2.3s
2352:  //rb/spec/integration/selenium/webdriver/firefox:driver-firefox          �[0m�[32mPASSED�[0m in 30.0s
2353:  //rb/spec/integration/selenium/webdriver/firefox:profile-firefox         �[0m�[32mPASSED�[0m in 35.2s
2354:  //rb/spec/integration/selenium/webdriver/firefox:service-firefox         �[0m�[32mPASSED�[0m in 4.4s
2355:  //rb/spec/integration/selenium/webdriver/remote:driver-firefox           �[0m�[32mPASSED�[0m in 3.2s
2356:  //rb/spec/integration/selenium/webdriver/remote:element-firefox          �[0m�[32mPASSED�[0m in 8.2s
2357:  //rb/spec/integration/selenium/webdriver:manager-firefox                 �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 14.7s
2358:  Stats over 3 runs: max = 14.7s, min = 13.4s, avg = 13.9s, dev = 0.6s
2359:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-firefox/test.log
2360:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-firefox/test_attempts/attempt_1.log
2361:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-firefox/test_attempts/attempt_2.log
2362:  Executed 28 out of 28 tests: 27 tests pass and �[0m�[31m�[1m1 fails locally�[0m.
2363:  There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are.
2364:  �[0m
2365:  ##[error]Process completed with exit code 1.
2366:  Post job cleanup.
...

2392:  Sent 100794368 of 116594304 (86.4%), 4.0 MBs/sec
2393:  Sent 102629376 of 116594304 (88.0%), 3.9 MBs/sec
2394:  Sent 103940096 of 116594304 (89.1%), 3.8 MBs/sec
2395:  Sent 105447424 of 116594304 (90.4%), 3.7 MBs/sec
2396:  Sent 107020288 of 116594304 (91.8%), 3.6 MBs/sec
2397:  Sent 108658688 of 116594304 (93.2%), 3.5 MBs/sec
2398:  Sent 110428160 of 116594304 (94.7%), 3.5 MBs/sec
2399:  Sent 112394240 of 116594304 (96.4%), 3.4 MBs/sec
2400:  Sent 114425856 of 116594304 (98.1%), 3.4 MBs/sec
2401:  Sent 115933184 of 116594304 (99.4%), 3.3 MBs/sec
2402:  Sent 116594304 of 116594304 (100.0%), 3.2 MBs/sec
2403:  Successfully saved cache
2404:  ##[endgroup]
2405:  ##[group]Save cache for external-com_google_javascript_closure_library
2406:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2407:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-com_google_javascript_closure_library-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff, another job may be creating this cache.
2408:  Successfully saved cache
2409:  ##[endgroup]
2410:  ##[group]Save cache for external-crates
2411:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2412:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-crates-0ab4d1c13cdaa027d3a90d981f6b80bef58e82de1287e5f9f65ffc2dc1228f78, another job may be creating this cache.
2413:  Successfully saved cache
2414:  ##[endgroup]
2415:  ##[group]Save cache for external-protobuf+
2416:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2417:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-protobuf+-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff, another job may be creating this cache.
2418:  Successfully saved cache
2419:  ##[endgroup]
2420:  ##[group]Save cache for external-rules_java++toolchains+remotejdk21_win
2421:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2422:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-rules_java++toolchains+remotejdk21_win-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff, another job may be creating this cache.
2423:  Successfully saved cache
2424:  ##[endgroup]
2425:  ##[group]Save cache for external-rules_java++toolchains+remote_java_tools
2426:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2427:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-rules_java++toolchains+remote_java_tools-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff, another job may be creating this cache.
2428:  Successfully saved cache
2429:  ##[endgroup]
2430:  ##[group]Save cache for external-rules_java++toolchains+remote_java_tools_windows
2431:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2432:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-rules_java++toolchains+remote_java_tools_windows-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff, another job may be creating this cache.
2433:  Successfully saved cache
2434:  ##[endgroup]
2435:  ##[group]Save cache for external-rules_kotlin+
2436:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2437:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-rules_kotlin+-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff, another job may be creating this cache.
2438:  Successfully saved cache
2439:  ##[endgroup]
2440:  ##[group]Save cache for external-rules_python++python+python_3_9_x86_64-pc-windows-msvc
2441:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2442:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-rules_python++python+python_3_9_x86_64-pc-windows-msvc-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff, another job may be creating this cache.
2443:  Successfully saved cache
2444:  ##[endgroup]
2445:  ##[group]Save cache for external-rules_ruby++ruby+bundle
2446:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2447:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-rules_ruby++ruby+bundle-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff, another job may be creating this cache.
2448:  Successfully saved cache
2449:  ##[endgroup]
2450:  ##[group]Save cache for external-rules_rust
2451:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2452:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-rules_rust-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff, another job may be creating this cache.
2453:  Successfully saved cache
2454:  ##[endgroup]
2455:  ##[group]Save cache for external-rw-1704990954_tools
2456:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
2457:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-rw-1704990954_tools-3364ab01789d14f6e7de3be86aca12358c429f0ea3e933779d399e8f8caa1fff, another job may be creating this cache.
2458:  Successfully saved cache

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
B-build Includes scripting, bazel and CI integrations Review effort 2/5
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant