Skip to content

Commit

Permalink
Merge pull request #1371 from EstebanBorai/feat/geckodriver-linux-aar…
Browse files Browse the repository at this point in the history
…ch64

feat(webdriver): support geckodriver for `linux-aarch64`
  • Loading branch information
drager committed Jun 26, 2024
2 parents 92afcdb + e885bc6 commit bd94075
Show file tree
Hide file tree
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
Expand Up @@ -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 {
Expand Down
1 change: 1 addition & 0 deletions tests/all/webdriver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit bd94075

Please sign in to comment.