ci(release): fix x86_64-linux-musl build (cmake + g++); defer aarch64-linux (#69) - #70
Merged
Conversation
…lib-ng hts-sys 2.2.0 hard-enables libz-sys/zlib-ng, whose CMake build needs a C++ compiler; the musl runners only had musl-gcc, so both Linux release jobs failed. Install cmake and point CXX at the host g++ (right arch on these native runners; zlib-ng is C-only). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…htslib bug) The cmake + host-g++ fix lets the x86_64-unknown-linux-musl release build htslib's libz-sys/zlib-ng (it had never built with htslib before — v0.1.0 predated rust-htslib). aarch64-unknown-linux-musl is dropped for now: rust-htslib 0.44.1 fails to compile on aarch64 (E0308 c_char signedness mismatch, upstream). install.sh reverts to source for aarch64-linux. Tracked separately. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
x86_64-linux-musl had never built with htslib (v0.1.0 predated rust-htslib); hts-sys 2.2.0 forces libz-sys/zlib-ng (CMake + C++). Fixed with
cmake+ hostg++. aarch64-linux deferred (#69, rust-htslib E0308). Dry-run validated: x86_64-musl + both macOS green.🤖 Generated with Claude Code