-
Notifications
You must be signed in to change notification settings - Fork 5
Consider alternative unxip implementation #63
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
base: main
Are you sure you want to change the base?
Conversation
Replace system xip command with unxip library for significantly improved Xcode extraction performance. Updates tests and documentation to reflect the new implementation.
Resolves #16 |
To provide feedback, navigate to the Files changed tab and leave comments on the proposed code changes. Choose Start review for each comment, and then choose Request changes, and I'll propose revised changes. |
⏳ I'm reviewing this pull request for security vulnerabilities and code quality issues. I'll provide an update when I'm done |
✅ I finished the code review, and didn't find any security or code quality issues. |
✅ I updated this pull request based on the pipeline log. |
Add platform-specific handling for XIP extraction - use unxip library on macOS for better performance, fall back to command-line xip tool on other platforms. Improves cross-platform compatibility while maintaining performance benefits where available.
✅ I updated this pull request based on the pipeline log. |
Replace platform condition syntax with preprocessor directives for macOS-specific dependencies
✅ I updated this pull request based on the pipeline log. |
Split dependencies into base and platform-specific groups to improve maintainability and readability. Use conditional compilation to handle macOS-specific dependencies.
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.
Use conditional compilation to make the test works on Linux and skip the implementation on macos. Iterate until both build works and unit test pass
This pull request introduces performance improvements for Xcode installation by integrating the unxip library. Key changes include:
The main goal of this change is to improve the performance of Xcode installation by using a more efficient XIP extraction method while maintaining the same functionality.