-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[rust] xz uncompressor for Firefox Linux nightlies #14832
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
@VietND96 Are the two failing checks caused by the new crate dependency? Am I required to change anything? |
Looks like you missed to format code. Run |
The xz2 crate is already in the dependency tree, so use it for implementing a xz uncompressor.
I have run the test and included the Bazel lock file change. |
Ah, and the import sorting is now fixed as well. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bgermann: Thanks a lot for reporting and contributing. I tested your code, and it works nicely. My only concern is that the new function uncompress_xz
is almost identical to the existing uncompress_bz2
, so it would be better to create a common function for both parameterizing the decoder (XzDecoder
and BzDecoder
respectively). Can you please make that change in your PR?
Refactor the BZ uncompressor to be a generic tar uncompressor. Implement a new XZ uncompressor based on it so selenium-manager can deal with the new Firefox nightly builds for Linux.
Looks good to me, many thanks, @bgermann. I tested locally it and it works nicely. Some tests are failing in CI but the reason is other, so it can be merged. Thanks again! |
User description
Description
Add a xz uncompressor.
Motivation and Context
Mozilla provides Linux nightlies in tar.xz archived now. Closes: #14831
Types of changes
Checklist
PR Type
Enhancement
Description
xz2
crate.uncompress_xz
to handle the extraction of XZ compressed files.uncompress
function to include logic for handling XZ file extensions.xz2
crate to the project's dependencies inCargo.toml
.Changes walkthrough 📝
files.rs
Add XZ file decompression support in Rust
rust/src/files.rs
xz2
dependency for XZ file decompression.uncompress_xz
function to handle XZ file extraction.uncompress
function to support XZ file format.Cargo.toml
Add xz2 crate dependency for XZ support
rust/Cargo.toml
xz2
crate to dependencies for XZ decompression.