Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
7 changes: 7 additions & 0 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,13 @@ jobs:
crates: rust/Cargo.Bazel.lock
repository-cache: true
bazelrc: common --color=yes
# Workaround for rules_ruby MSYS2 "infinite symlink expansion detected" on Windows
- name: Remove MSYS2 recursive symlink
if: inputs.os == 'windows'
shell: bash
run: |
[ -L "D:/b/external/rules_ruby++ruby+ruby/dist/msys64/etc/mtab-" ] && \
rm "D:/b/external/rules_ruby++ruby+ruby/dist/msys64/etc/mtab-"
- name: Setup curl for Ubuntu
if: inputs.os == 'ubuntu'
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ def firefox_options(args: [], **opts)
opts[:browser_version] = 'stable' if WebDriver::Platform.windows?
opts[:web_socket_url] = true if ENV['WEBDRIVER_BIDI'] && !opts.key?(:web_socket_url)
opts[:binary] ||= rlocation(ENV['FIREFOX_BINARY']) if ENV.key?('FIREFOX_BINARY')
opts[:unhandled_prompt_behavior] ||= 'ignore'
args << '--headless' if ENV['HEADLESS']
WebDriver::Options.firefox(args: args, **opts)
end
Expand Down