ci: fix cross-platform build and test failures#13
Merged
Conversation
Signed-off-by: Chao Liu <[email protected]>
Signed-off-by: Chao Liu <[email protected]>
Signed-off-by: Chao Liu <[email protected]>
Signed-off-by: Chao Liu <[email protected]>
zevorn
marked this pull request as ready for review
July 15, 2026 17:31
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.
Summary
bindirectories toGITHUB_PATHbeforeconfiguring QEMU in the macOS build matrix.
pread()/pwrite()calls in the AX650X eMMC qtest withportable seek/read/write operations and open the raw image in binary mode.
FID-limit test does not depend on the backing filesystem's xattr capacity.
Sphinx multiprocessing failures cannot mask compiler compatibility results.
Root causes
The macOS runners installed Homebrew bison, but bison is keg-only and was not
added to
PATH. Meson therefore found/usr/bin/bison 2.3, while the Hexagonbuild requires bison 3.0 or newer.
The MinGW64 and Windows CLANGARM64 builds failed because the AX650X qtest used
POSIX
pread()andpwrite(), which are not declared on Windows. QEMU's osdeplayer already provides portable
lseek(), regular file I/O, and binary-modeflags for this use case.
The Linux ARM64 check failed the existing 9p
local/xattr_limit/defaulttestwith
RLERROR/ENOSPCwhile clunking an 8 KiB xattr. The test is intended toverify the number of outstanding xattr FIDs, not the host filesystem's maximum
xattr value size. A 1 KiB non-empty payload preserves all limit assertions and
works on constrained overlay/backing filesystems.
The Clang 22 job installed and configured the requested compiler successfully,
but its Sphinx
-j autoworker exited withmultiprocessing EOFErrorwhileNinja was compiling in parallel. Documentation is already covered elsewhere;
keeping this dedicated job compiler-only removes the unrelated resource race.
Original failing jobs:
Validation
git diff --checkactionlint -shellcheck= .github/workflows/build.ymlscripts/checkpatch.pl --branch HEAD^..HEADthe system bison 2.3.
qemu:qtest-aarch64/ax650x-pyramid-test: 9/9 subtests passed.local/xattr_limit/defaulttest path: 1/1 passed.The original
develmatrix and the updated fix-branch matrix remain underobservation for additional independent failures.