Skip to content

Commit

Permalink
feat(webdriver): support geckodriver for linux-aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
EstebanBorai committed Jun 26, 2024
1 parent 92afcdb commit e885bc6
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/webdriver/geckodriver.rs
Original file line number Diff line number Diff line change
@@ -40,6 +40,8 @@ pub fn install_geckodriver(cache: &Cache, installation_allowed: bool) -> Result<
("linux32", "tar.gz")
} else if target::LINUX && target::x86_64 {
("linux64", "tar.gz")
} else if target::LINUX && target::aarch64 {
("linux-aarch64", "tar.gz")
} else if target::MACOS {
("macos", "tar.gz")
} else if target::WINDOWS && target::x86 {
1 change: 1 addition & 0 deletions tests/all/webdriver.rs
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ fn can_install_chromedriver() {
#[cfg(any(
all(target_os = "linux", target_arch = "x86"),
all(target_os = "linux", target_arch = "x86_64"),
all(target_os = "linux", target_arch = "aarch64"),
all(target_os = "macos", target_arch = "x86_64"),
all(target_os = "macos", target_arch = "aarch64"),
all(target_os = "windows", target_arch = "x86"),

0 comments on commit e885bc6

Please sign in to comment.