1
0
Fork 0
mirror of https://github.com/melonDS-emu/melonDS.git synced 2025-03-06 21:00:31 +01:00

ci: enable building of appimages on aarch64

Looks like whatever was causing linuxdeploy to crash got fixed, so we can build them now.
This commit is contained in:
Nadia Holmquist Pedersen 2025-02-21 08:21:27 +01:00
parent e8265df4bd
commit 63b468927e

View file

@ -48,20 +48,16 @@ jobs:
name: melonDS-ubuntu-${{ matrix.arch.name }}
path: AppDir/usr/bin/melonDS
- name: Fetch AppImage tools
# linuxdeploy doesn't seem to work on the aarch64 runners?
if: matrix.arch.name != 'aarch64'
run: |
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-${{ matrix.arch.name }}.AppImage
wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-${{ matrix.arch.name }}.AppImage
chmod a+x linuxdeploy-*.AppImage
- name: Build the AppImage
if: matrix.arch.name != 'aarch64'
env:
QMAKE: /usr/lib/qt6/bin/qmake
run: |
./linuxdeploy-${{ matrix.arch.name }}.AppImage --appdir AppDir --plugin qt --output appimage
- uses: actions/upload-artifact@v4
if: matrix.arch.name != 'aarch64'
with:
name: melonDS-appimage-${{ matrix.arch.name }}
path: melonDS*.AppImage