fix(ci): build the Linux AppImage on debian:11 (fixes red nightly) - #108
Merged
Conversation
NonPolynomialTim
enabled auto-merge (squash)
July 31, 2026 02:39
…read) Rebuilt as a single clean delta on top of main (the branch predated #107's squash, so its old pre-squash AppImage commits conflicted with main). build-linux now: debian:11 (glibc 2.31 floor) + jsoncpp 1.9.5 built from source into /usr/local (distro 1.9.4/1.7.4 makes the coop code's raw int64/uint64 -> Json::Value writes ambiguous on gcc) + -pthread (glibc 2.31 has a separate libpthread the CMake build never links). Validated green end-to-end via a branch ci-main dispatch. Mirrored into ci-validate. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
NonPolynomialTim
force-pushed
the
fix/ci-linux-appimage-jsoncpp
branch
from
July 31, 2026 02:44
f1b5d51 to
ab9fc6e
Compare
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.
Follow-up to #107. The post-merge nightly's
build-linuxfailed to compile:ubuntu:20.04ships jsoncpp 1.7.4 (built withoutJSON_HAS_INT64), souint64_tis ambiguous between theInt/UInt/doublectors. ubuntu-latest had jsoncpp 1.9.5 and compiled fine; the container migration in #107 regressed it. The AppImage step never even ran.Fix: build on
debian:11(bullseye) in bothci-mainand theci-validategate — same low glibc floor (2.31, covers Debian 11+/Ubuntu 20.04+/RHEL·Rocky 9) but modern jsoncpp 1.9.4 + gcc 10, which build the code like ubuntu-latest did.Net diff vs main is just the
container:swap.build-linuxisn't a required check, so do not auto-merge — confirm this PR'sbuild-linuxis green (it compiles the AppImage on debian:11) before landing, so main's nightly isn't broken again.🤖 Generated with Claude Code