From 63b468927e1c744e21057ccb4c5677f52502b442 Mon Sep 17 00:00:00 2001 From: Nadia Holmquist Pedersen Date: Fri, 21 Feb 2025 08:21:27 +0100 Subject: [PATCH] ci: enable building of appimages on aarch64 Looks like whatever was causing linuxdeploy to crash got fixed, so we can build them now. --- .github/workflows/build-ubuntu.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index 98b0bd0b..9d701524 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -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