Merged
Conversation
…lease workflow.
This update to the GitHub Actions release workflow should better handle OpenSSL dependencies, which were causing build failures on certain platforms.
Here's a summary of the key changes:
- **macOS (x86_64 & ARM64):**
- I'll now install OpenSSL (openssl@3) using Homebrew.
- I've set up the environment so that Rust's `openssl-sys` crate can find the OpenSSL installation.
- **Linux ARM64 (aarch64-unknown-linux-gnu):**
- I've added `libssl-dev` and `pkg-config` to the list of installed packages. This will help when `openssl-sys` needs to compile OpenSSL from source or find system libraries during cross-compilation.
- **Windows (x86_64-pc-windows-msvc):**
- I've added a step to install Strawberry Perl using Chocolatey. Perl is often required by the OpenSSL build scripts if the `openssl-sys` crate builds OpenSSL from source.
These changes should resolve the previously encountered OpenSSL-related build errors and improve the reliability of the release binary compilation process.
This commit updates the GitHub Actions release workflow to address an "invalid path" error encountered during the checkout process on Windows runners. The fix involves adding a step to execute `git config --system core.longpaths true` before the `actions/checkout` step for jobs running on Windows. This Git configuration allows handling of long file paths, which can otherwise cause issues on this platform.
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
No description provided.