[bazel] Rename remote config to rbe#15496
Conversation
In the Selenium project, `remote` may refer to a number of different things: * A driver running on the local machine, but not in process * A driver running remotely, in Grid or a Selenium As A Service provider * The remote protocol we're using * The `remote` Bazel config for builds To reduce this plethora of options, renaming the Bazel `remote` config to `rbe` will help.
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
|||||||||||
User description
In the Selenium project,
remotemay refer to a number of different things:remoteBazel config for buildsTo reduce this plethora of options, renaming the Bazel
remoteconfig torbewill help.PR Type
Enhancement, Documentation
Description
Renamed Bazel
remoteconfiguration torbefor clarity.Updated all references to
remotein scripts and configuration files.Adjusted documentation to reflect the configuration name change.
Ensured consistency across build and test configurations.
Changes walkthrough 📝
ci-build.sh
Update CI build script to use `rbe` configurationscripts/github-actions/ci-build.sh
--config=remote-ciwith--config=rbe-ci..bazelrc
Rename `remote` to `rbe` in Bazel configuration.bazelrc
remote_releasetorbe_release.remotetorbein build configurations..bazelrc.remote
Update `.bazelrc.remote` to use `rbe` configuration.bazelrc.remote
remoteconfigurations withrbe.rbe.Rakefile
Update Rakefile tasks to use `rbe` configurationRakefile
--config=remote_releasewith--config=rbe_release.CONTRIBUTING.md
Update documentation to reflect `rbe` configurationCONTRIBUTING.md
--config=rbeinstead of--config=remote.