Use static AppImage runtime for Linux packaging - #3482
Merged
Conversation
Copilot
AI
changed the title
[WIP] Fix AppImage dependency on libfuse2 for modern distros
Use FUSE 3 AppImage runtime for Linux packaging
May 16, 2026
eval-exec
force-pushed
the
copilot/fix-libfuse-issue-in-appimage
branch
from
August 24, 2026 08:33
3627daf to
ecb3fcd
Compare
eval-exec
marked this pull request as ready for review
August 24, 2026 08:34
eval-exec
force-pushed
the
copilot/fix-libfuse-issue-in-appimage
branch
from
August 24, 2026 08:35
ecb3fcd to
723e7ce
Compare
Collaborator
|
@chenyukang I think this PR is ready to merge. After this, we can prepare to create a new neuron Release: Ref: #3500 |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates Neuron’s Linux AppImage packaging to use a newer electron-builder toolchain and explicitly select the AppImage toolset with a statically linked runtime, addressing failures on FUSE 3-only hosts (issue #3434).
Changes:
- Upgraded
electron-builderto26.15.7and updated the lockfile accordingly. - Configured
electron-builder.ymlto use AppImage toolset1.0.3(static runtime) and adjusted Windows signing config nesting. - Added a Jest config-structure test for the AppImage target/toolset selection (and added
yamlto support parsing).
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| yarn.lock | Dependency graph updates from upgrading electron-builder and related packages. |
| packages/neuron-wallet/tests/config/electron-builder.test.ts | Adds a structural test asserting AppImage target + toolset selection. |
| packages/neuron-wallet/package.json | Bumps electron-builder; adds yaml for the new test. |
| packages/neuron-wallet/electron-builder.yml | Selects AppImage toolset 1.0.3; moves Windows signing options under signtoolOptions. |
| package.json | Adds a resolution pin for @electron/rebuild to keep Node 20 baseline compatibility. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
chenyukang
approved these changes
Aug 25, 2026
chenyukang
enabled auto-merge
August 25, 2026 07:49
eval-exec
force-pushed
the
copilot/fix-libfuse-issue-in-appimage
branch
from
August 25, 2026 08:03
723e7ce to
589b102
Compare
eval-exec
force-pushed
the
copilot/fix-libfuse-issue-in-appimage
branch
from
August 25, 2026 08:04
589b102 to
a64b167
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.
Fixes #3434.
Neuron's Linux AppImage currently uses the legacy AppImage runtime, which tries to load
libfuse.so.2and fails on fresh distributions that provide FUSE 3 instead.Changes
electron-builderto 26.15.7.libfuse2.signtoolOptionsfor the newer builder schema.@electron/rebuildto 3.7.2.Validation
yarn buildelectron-builder26.15.7static-pie linkedlibfuse.so.2referenceAppRunuses the correctedLD_LIBRARY_PATHexpansionFlatpak distribution and unrelated runtime libraries such as
libnss3andlibasoundremain outside this AppImage FUSE fix.