Skip to content

Commit

Permalink
[rust] Enable Firefox nightly for linux on arm64 (#14099)
Browse files Browse the repository at this point in the history
Co-authored-by: Boni García <[email protected]>
  • Loading branch information
bgermann and bonigarcia authored Jun 11, 2024
1 parent 936ced0 commit 7af4f19
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rust/src/firefox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,11 @@ impl SeleniumManager for FirefoxManager {
if X32.is(arch) {
platform_label = "linux-i686";
} else if self.is_nightly(browser_version) {
platform_label = "linux64";
if ARM64.is(arch) {
platform_label = "linux64-aarch64";
} else {
platform_label = "linux64";
}
} else {
platform_label = "linux-x86_64";
}
Expand Down

0 comments on commit 7af4f19

Please sign in to comment.