Skip to content

Commit 7af4f19

Browse files
bgermannbonigarcia
andauthored
[rust] Enable Firefox nightly for linux on arm64 (#14099)
Co-authored-by: Boni García <boni.garcia@uc3m.es>
1 parent 936ced0 commit 7af4f19

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

rust/src/firefox.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,11 @@ impl SeleniumManager for FirefoxManager {
569569
if X32.is(arch) {
570570
platform_label = "linux-i686";
571571
} else if self.is_nightly(browser_version) {
572-
platform_label = "linux64";
572+
if ARM64.is(arch) {
573+
platform_label = "linux64-aarch64";
574+
} else {
575+
platform_label = "linux64";
576+
}
573577
} else {
574578
platform_label = "linux-x86_64";
575579
}

0 commit comments

Comments
 (0)