Conversation
bilelmoussaoui/flatpak-github-actions:gnome-47 publishes no arm64 manifest, so docker pull on the ubuntu-24.04-arm runner fails every time — the arm64 flatpak leg has never been buildable. It blocked finalize (and the updater manifest). Build x86_64 .flatpak only; arm64 Linux users still get the arm64 .deb/.rpm/.AppImage. Revisit if the image gains arm64 or via QEMU cross-build. Co-Authored-By: Claude Opus 4.8 <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.
Why
After the
mainBinaryNamefix (#86), the x86_64 flatpak leg now buildsgreen, but the arm64 leg fails every run on:
Not transient. The builder image's OCI index has only
amd64/linux(+ anattestation manifest) — no arm64 variant — so
docker pullon theubuntu-24.04-armrunner can't resolve an arch and fails. The arm64 flatpakleg has never been buildable with this toolchain, and it blocks
finalize(no release, no
latest.json).Fix
Build the x86_64
.flatpakonly. arm64 Linux users are still covered bythe arm64
.deb,.rpm, and.AppImage(those legs pass) — only the arm64.flatpakis omitted. Dropped explicitly (with a comment) rather than maskedwith
continue-on-error, so a real future failure still surfaces.Revisit if the image gains an arm64 manifest, or add a QEMU cross-build.
Result expected
build-flatpak(single x86_64 leg) →finalizepublishes the release →verify-manifestconfirmslatest.jsonparses, version matches the tag, andevery platform entry has a signed URL.
🤖 Generated with Claude Code