Skip to content

Commit

Permalink
Runn appiamge using extract due to fuse not working in docker.
Browse files Browse the repository at this point in the history
  • Loading branch information
karliss committed Jul 7, 2024
1 parent f01adfe commit a0a6bae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/actions/build-linux-old/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ inputs:
runs:
using: 'docker'
image: 'ubuntu:18.04'
options: --privileged
entrypoint: './.github/actions/build-linux-old/entrypoint.sh'
args:
- ${{ inputs.system-deps }}
Expand Down
6 changes: 4 additions & 2 deletions .github/actions/build-linux-old/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -176,15 +176,17 @@ then
rm -fv "../cutter-deps/qt/plugins/imageformats/libqjp2.so"
if [ "$qt_major" == "5" ]; then
export APPIMAGE_FILE="Cutter-${PACKAGE_ID}-Linux-Qt5-x86_64.AppImage"
./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop \
./linuxdeployqt*.AppImage --appimage-extract-and-run \
./appdir/usr/share/applications/*.desktop \
-executable=./appdir/usr/bin/python3 \
-appimage \
-no-strip -exclude-libs=libnss3.so,libnssutil3.so,libqjp2.so \
-ignore-glob=usr/lib/python3.12/**/* \
-verbose=2
else
export APPIMAGE_FILE="Cutter-${PACKAGE_ID}-Linux-x86_64.AppImage"
./linuxdeployqt*.AppImage ./appdir/usr/share/applications/*.desktop \
./linuxdeployqt*.AppImage --appimage-extract-and-run \
./appdir/usr/share/applications/*.desktop \
-executable=./appdir/usr/bin/python3 \
-appimage \
-no-strip -exclude-libs=libnss3.so,libnssutil3.so,libqjp2.so \
Expand Down

0 comments on commit a0a6bae

Please sign in to comment.