Skip to content

Commit

Permalink
[appimage] CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Feb 15, 2024
1 parent d0874bb commit 2a66131
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion ci/appimage.build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ wget -nv "https://github.com/AppImage/appimagetool/releases/download/continuous/
chmod a+x appimagetool-x86_64.AppImage

wget -nv "https://github.com/AppImage/type2-runtime/releases/download/continuous/runtime-x86_64"
chmod a+x runtime-x86_64.AppImage
chmod a+x runtime-x86_64

wget -nv "https://github.com/probonopd/AppImageKit/releases/download/continuous/AppRun-x86_64"
chmod a+x AppRun-x86_64
Expand All @@ -40,6 +40,11 @@ fi

./appimagetool-x86_64.AppImage -n "build/score.AppDir" "Score.AppImage" --runtime-file runtime-x86_64

if [[ ! -f "Score.AppImage" ]]; then
echo "Build failure, Score.AppImage could not be created"
exit 1
fi

chmod a+rwx Score.AppImage
(
cd $BUILD_FOLDER/SDK
Expand Down
2 changes: 1 addition & 1 deletion ci/appimage.deps.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -eux

sudo apt-get update -qq
sudo apt-get install wget libfuse2
sudo apt-get install wget libfuse2 desktop-file-utils

source ci/common.deps.sh

0 comments on commit 2a66131

Please sign in to comment.