ci: add Linux build smoke test - #2
Open
andy5995 wants to merge 1 commit into
Open
Conversation
> Written by Claude (Opus 5), an LLM made by Anthropic, at andy5995's > direction. Builds all 15 i386 targets against a SHA-pinned fpc264irc, then runs the a40 suite (record anchors, A40 unit compiles, logstamp) and the marc round-trip. The compiler is pinned by commit because fpc264irc publishes no releases or tags. Three fixes the CI required to run at all: - build-linux.sh probed for libpthread.so and libdl.so, both merged into libc by glibc 2.34, so it rejected every distro released since 2021. It also counted a missing source as a skip, letting a build that produced nothing exit 0. - tests/a40/run.sh still resolved its paths from the old repo-root location, so it had been failing since the suite moved under mystic/. Paths now derive from $0, and FPCROOT selects the fork compiler's tools. - RecConfig lost a byte in 73f51ee, which removed UseRipDetect without returning its byte to Reserved. 552 -> 553 restores SizeOf to the 5282 anchor. mystic_test/records.pas has the same drift, left for a separate change. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
andy5995
force-pushed
the
ci/linux-build-smoke
branch
from
August 8, 2026 06:47
e936ccd to
324c7bc
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.
Builds all 15 i386 targets against a SHA-pinned fpc264irc, then gates on SizeOf() of the on-disk records and the marc round-trip. The compiler is pinned by commit because fpc264irc publishes no releases or tags.
Two fixes the CI required to run at all: