fix(webdriver): drop 32-bit Linux geckodriver support#1595
Merged
guybedford merged 1 commit intoJul 7, 2026
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Mozilla discontinued 32-bit (x86) Linux builds of geckodriver starting in v0.37.0 (aligned with Firefox 145 dropping 32-bit x86 Linux), so the download URL now returns a 404. This breaks the
can_install_geckodrivertest on 32-bit Linux, as reported by an Alpine Linux packager running the full test suite across their arch matrix.32-bit x86 Linux is effectively dead for desktop/server use, and running headless Firefox wasm tests on it is a vanishingly rare intersection, so rather than pin to an old geckodriver or add a self-build path, this simply drops the platform:
linux32target branch frominstall_geckodriver, so 32-bit Linux now hits the existinggeckodriver binaries are unavailable for this targetbailcan_install_geckodriveron 32-bit Linux via itscfgUsers who still need Firefox testing on 32-bit Linux can
cargo install geckodriveror cross-compile it, per Mozilla's own guidance.Resolves #1594.