Skip to content

Commit

Permalink
[bugfix] Fix Archlinux AppImage CI
Browse files Browse the repository at this point in the history
Disabling stripping seems to be the issue, as per:
linuxdeploy/linuxdeploy#272
nikp123 committed Jul 10, 2024
1 parent 391e00c commit 05ee29c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/docker/archlinux/build.sh
Original file line number Diff line number Diff line change
@@ -19,6 +19,10 @@ make install DESTDIR=AppDir
# Fix AppImage not running due to the lack of FUSE
export APPIMAGE_EXTRACT_AND_RUN=1

# Fix AppImage not building due to stripping incompatibilities with ArchLinux
# https://github.com/linuxdeploy/linuxdeploy/issues/272
export NO_STRIP=true

# Create AppImage
env LD_LIBRARY_PATH=. linuxdeploy \
--appdir AppDir \

0 comments on commit 05ee29c

Please sign in to comment.