From 2d0d4cfc508696803a80cc68f62bba739ea1bf33 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 21 Mar 2026 11:28:55 -0700 Subject: [PATCH] Skip AppImage and RPM builds to avoid slow 360MB+ compression AppImage bundler compresses the entire sidecar.zip into squashfs, causing builds to hang/timeout. Limit targets to deb (Linux), nsis+msi (Windows), and dmg (macOS). Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/build-linux.yml | 2 +- src-tauri/tauri.conf.json | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build-linux.yml b/.gitea/workflows/build-linux.yml index ea1671b..f628761 100644 --- a/.gitea/workflows/build-linux.yml +++ b/.gitea/workflows/build-linux.yml @@ -103,7 +103,7 @@ jobs: exit 1 fi - find src-tauri/target/release/bundle -type f \( -name "*.deb" -o -name "*.AppImage" \) | while IFS= read -r file; do + find src-tauri/target/release/bundle -type f -name "*.deb" | while IFS= read -r file; do filename=$(basename "$file") encoded_name=$(echo "$filename" | sed 's/ /%20/g') echo "Uploading ${filename} ($(du -h "$file" | cut -f1))..." diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 90ba276..8ef06cc 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -31,7 +31,7 @@ }, "bundle": { "active": true, - "targets": "all", + "targets": ["deb", "nsis", "msi", "dmg"], "icon": [ "icons/32x32.png", "icons/128x128.png", @@ -48,9 +48,6 @@ "linux": { "deb": { "depends": [] - }, - "appimage": { - "bundleMediaFramework": true } }, "windows": {