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 <noreply@anthropic.com>
This commit is contained in:
@@ -103,7 +103,7 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
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")
|
filename=$(basename "$file")
|
||||||
encoded_name=$(echo "$filename" | sed 's/ /%20/g')
|
encoded_name=$(echo "$filename" | sed 's/ /%20/g')
|
||||||
echo "Uploading ${filename} ($(du -h "$file" | cut -f1))..."
|
echo "Uploading ${filename} ($(du -h "$file" | cut -f1))..."
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
},
|
},
|
||||||
"bundle": {
|
"bundle": {
|
||||||
"active": true,
|
"active": true,
|
||||||
"targets": "all",
|
"targets": ["deb", "nsis", "msi", "dmg"],
|
||||||
"icon": [
|
"icon": [
|
||||||
"icons/32x32.png",
|
"icons/32x32.png",
|
||||||
"icons/128x128.png",
|
"icons/128x128.png",
|
||||||
@@ -48,9 +48,6 @@
|
|||||||
"linux": {
|
"linux": {
|
||||||
"deb": {
|
"deb": {
|
||||||
"depends": []
|
"depends": []
|
||||||
},
|
|
||||||
"appimage": {
|
|
||||||
"bundleMediaFramework": true
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"windows": {
|
"windows": {
|
||||||
|
|||||||
Reference in New Issue
Block a user