Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
- os: macos
- os: ubuntu
- os: windows
- os: windows-11-arm
Comment thread
cgoldberg marked this conversation as resolved.
with:
name: Tests (${{ matrix.os }})
cache-key: rust-test
Expand Down
2 changes: 1 addition & 1 deletion rust/src/electron.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ impl SeleniumManager for ElectronManager {
if X32.is(arch) {
"win32-ia32"
} else if ARM64.is(arch) {
"win32-arm64-x64"
"win32-arm64"
} else {
"win32-x64"
}
Expand Down
2 changes: 1 addition & 1 deletion rust/src/firefox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ impl SeleniumManager for FirefoxManager {
if X32.is(arch) || major_browser_version < 42 {
platform_label = "win32";
} else if ARM64.is(arch) {
platform_label = "win-aarch64";
platform_label = "win64-aarch64";
} else {
platform_label = "win64";
}
Expand Down