Skip to content

Commit

Permalink
rel
Browse files Browse the repository at this point in the history
  • Loading branch information
mnvr committed Jan 21, 2025
1 parent 48bb442 commit 129113d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/binaries-for-ente.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm]
os: [ubuntu-24.04]//, ubuntu-24.04-arm]
# arch: [x86_64, aarch64]
compiler: [gcc] # clang
include:
Expand Down Expand Up @@ -62,8 +62,8 @@ jobs:
run: |
set -e
sudo apt install -y file
mkdir /app-image
cd /app-image
mkdir app-image
cd app-image
# wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
# chmod a+x linuxdeployqt-continuous-x86_64.AppImage
# ./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract
Expand All @@ -82,15 +82,15 @@ jobs:
set -e
./configure --with-quantum-depth=16 --without-magick-plus-plus --without-perl --without-x --disable-docs --prefix=/usr
make
make install DESTDIR=$(readlink -f /appdir)
make install DESTDIR=$(readlink -f appdir)
- name: Create ImageMagick AppImage
run: |
set -e
mkdir -p /appdir/usr/share/applications/
cp ./app-image/imagemagick.desktop /appdir/usr/share/applications/
mkdir -p /appdir/usr/share/icons/hicolor/256x256/apps/
cp ./app-image/icon.png /appdir/usr/share/icons/hicolor/256x256/apps/imagemagick.png
mkdir -p appdir/usr/share/applications/
cp app-image/imagemagick.desktop appdir/usr/share/applications/
mkdir -p appdir/usr/share/icons/hicolor/256x256/apps/
cp app-image/icon.png appdir/usr/share/icons/hicolor/256x256/apps/imagemagick.png
unset QTDIR
unset QT_PLUGIN_PATH
unset LD_LIBRARY_PATH
Expand All @@ -102,12 +102,12 @@ jobs:
# chmod a+x /appdir/AppRun
# PATH=/app-image/squashfs-root/usr/bin:$PATH
# /app-image/squashfs-root/usr/bin/appimagetool -g /appdir/
/app-image/appimagetool-*.AppImage --appimage-extract-and-run -s deploy /appdir/usr/share/applications/*.desktop
./app-image/appimagetool-*.AppImage --appimage-extract-and-run -s deploy /appdir/usr/share/applications/*.desktop
chmod +x /appdir/usr/lib/ld-linux-aarch64.so.1 || true
/app-image/appimagetool-*.AppImage --appimage-extract-and-run /appdir
mkdir /artifacts
./app-image/appimagetool-*.AppImage --appimage-extract-and-run /appdir
mkdir artifacts
# cp ImageMagick-$VERSION-x86_64.AppImage artifacts
cp ImageMagick*.AppImage /artifacts/magick-${{ matrix.arch }}
cp ImageMagick*.AppImage artifacts/magick-${{ matrix.arch }}
# find /appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq
- name: Upload ImageMagick AppImage
Expand Down

0 comments on commit 129113d

Please sign in to comment.