From bb70dbd7ce071f37df528f4cf7393aaa657286f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kr=C3=BChlmann?= Date: Tue, 6 Jan 2026 01:58:08 +0100 Subject: [PATCH] Extract appimage in test due to FUSE --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fcd7e8..4047f60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,10 +69,11 @@ jobs: - name: Smoke test AppImage (Linux) if: matrix.os == 'ubuntu-latest' run: | + chmod +x dist/*.AppImage + ./dist/*.AppImage --appimage-extract sudo apt-get update sudo apt-get install -y xvfb - chmod +x dist/*.AppImage - xvfb-run ./dist/*.AppImage + xvfb-run squashfs-root/AppRun - name: Smoke test Windows exe if: matrix.os == 'windows-latest'