ci: fix AppImage bundling on CI (FUSE extract-and-run) - #49
Merged
Conversation
linuxdeploy/appimagetool mount themselves via FUSE, which GitHub runners don't provide, so AppImage bundling failed with "failed to run linuxdeploy" right after the .deb was built — taking down the whole desktop job, so neither the deb nor the AppImage reached the release. Set APPIMAGE_EXTRACT_AND_RUN=1 in both the release and nightly desktop builds so the tools extract instead of FUSE-mounting.
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
Fix the
desktopjob failing to bundle the AppImage. The.debbuilt fine butlinuxdeploy/appimagetoolmount themselves via FUSE, which GitHub Actions runners don't provide, so the AppImage step aborted the whole job (failed to run linuxdeploy) before its upload — leaving the release with only the Android zip and no desktop installers. SetAPPIMAGE_EXTRACT_AND_RUN=1in the desktop build step of bothrelease.ymlandnightly.ymlso the tooling extracts itself instead of FUSE-mounting.Affected layer
frontend/— React Web UImodule/— Magisk/KernelSU/APatch payload (shell + packagedkasumi-proxybackend)scripts/— build / release helpers.github/Verification
Workflow-only change; the Web UI / module checks below don't apply.
actionlintclean onrelease.ymlandnightly.ymlChecklist
Notes for reviewers
APPIMAGE_EXTRACT_AND_RUN=1needs no FUSE/libfuse2 on the runner. The release-pipeline design (bothmoduleanddesktopupload to the same release) was already correct — only the AppImage build was breaking.