fix(ci): rebuild vendored OpenSSL for aarch64 (unblock 4.7.0 arm64 publish) - #106
Merged
thiagoluiznunes merged 1 commit intoJul 6, 2026
Merged
Conversation
The 4.7.0 release failed: build-linux-arm64's `make build-linux` links the
vendored deps/openssl/linux, which is a precompiled x86_64 OpenSSL, so on
arm64 the final link fails ("libssl.a ... file in wrong format", EM: 62).
That failed job blocked the package/release jobs, so 4.7.0 was never
published to Artifactory.
Rebuild OpenSSL 1.1.1q for linux-aarch64 into deps/openssl/linux (install
perl in the builder for OpenSSL's Configure) before `make build-linux`.
Verified end-to-end in the same ubuntu:20.04 arm64 builder image: produces
an aarch64 libpitaya-linux.so with 0 errors.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Bugbot is not enabled for this team, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
thiagoluiznunes
approved these changes
Jul 6, 2026
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.
Problem
The 4.7.0 release failed —
build-linux-arm64(added in #105) failed atmake build-linux:deps/openssl/linuxis a precompiled x86_64 OpenSSL, so the arm64 link fails. Because that job is in thepackagejob'sneeds, the failure blocked publish → 4.7.0 was tagged but never pushed to Artifactory (latest there is still 4.6.5).Fix
In
build-linux-arm64, rebuild the vendored OpenSSL 1.1.1q forlinux-aarch64intodeps/openssl/linux(installingperlfor OpenSSL'sConfigure) beforemake build-linux. Same image/flow otherwise.Validation
Ran the exact recipe in the same
ubuntu:20.04arm64 builder (podman, native aarch64):make build-linuxcompletes with 0 errors and produces an aarch64libpitaya-linux.so(verified ELF machine = 0xB7). The earlier prebuilt arm64.sofrom this recipe alsodlopens inside the target game image.After merge, please cut a new tag so the release/publish runs (4.7.0 never published, so 4.7.0 or 4.7.1 both work).