Commit graph

10 commits

Author SHA1 Message Date
Eddy
819a65e8ae [appimage] Fix HTTP 409: auch versionierte Datei vor Upload loeschen
All checks were successful
Build AppImage / build (push) Successful in 5m15s
Forgejo Package Registry weist PUT auf existierenden Pfad mit 409 ab.
Bisher wurde nur 'latest/' geloescht, nicht aber 'VERSION/'. Beim
zweiten Build mit gleicher Version (0.1.0) crashte der Upload daher.
2026-04-19 23:36:19 +02:00
Eddy
e69ffe7f2b [appimage] AppImage auf jeder Linux-Distro lauffaehig (inkl. NixOS)
Some checks failed
Build AppImage / build (push) Failing after 5m28s
Zwei kombinierte Patches:

1. main.rs: WEBKIT_DISABLE_DMABUF_RENDERER + WEBKIT_DISABLE_COMPOSITING_MODE
   als defensive Defaults wenn nicht vom User gesetzt. Behebt typische
   WebKit2GTK-Renderer-Crashes auf modernen Wayland-Setups.

2. Workflow: nach 'tauri build' wird der AppRun gepatched.
   - Detect NixOS via /run/opengl-driver/lib -> Host-Mesa via LD_LIBRARY_PATH
   - WebKit-Workarounds als ENV-Defaults (override moeglich)
   - Standard linuxdeploy-Pfade (PATH, XDG_DATA_DIRS etc.)
   - Re-bundle mit appimagetool

Resultat: AppImage laeuft out-of-the-box auf Debian/Ubuntu/Fedora/NixOS,
ohne dass der User ENV-Vars setzen muss.
2026-04-19 23:27:40 +02:00
Eddy
c9f352ecbf [appimage] Fix Upload-Step: Leerzeichen im AppImage-Namen brach curl-URL
All checks were successful
Build AppImage / build (push) Successful in 5m21s
Tauri produziert "Claude Desktop_0.1.0_amd64.AppImage" mit Leerzeichen.
curl encoded URLs nicht automatisch -> malformed HTTP-Request, Step crash
in 150ms beim PUT.

Fix:
- AppImage vor Upload zu "Claude-Desktop_..." umbenennen (tr ' ' '-')
- set -e + curl --fail -sS damit echte HTTP-Fehler den Step killen
- BASE-URL als Variable, weniger Wiederholung
2026-04-19 23:00:01 +02:00
Eddy
65c868c2ff [appimage] Auf neuen Debian-Runner umstellen
Some checks failed
Build AppImage / build (push) Failing after 1m42s
- runs-on: docker -> appimage (16-Forgejo-Runner-AppImage)
- APPIMAGE_EXTRACT_AND_RUN aus Workflow raus (jetzt im Runner-ENV)
- Erster echter Test des dedizierten AppImage-Runners
2026-04-19 22:01:39 +02:00
Eddy
467a2c5e8f [appimage] APPIMAGE_EXTRACT_AND_RUN=1 fuer linuxdeploy auf Alpine/musl
Some checks failed
Build AppImage / build (push) Failing after 6m53s
2026-04-16 00:07:54 +02:00
Eddy
59046f5eb1 [appimage] Runner-nativ bauen statt rust:1.83-bookworm
Some checks failed
Build AppImage / build (push) Failing after 7s
Der 17-Forgejo-Runner (docker:host-Label) hat Rust 1.87, Node 22,
GTK, WebKit, AppIndicator, patchelf usw. bereits aus dem
docker.forgejo-runner-Image vorinstalliert. Der bisherige
container:-Block mit rust:1.83-bookworm + apt-get install hat
wegen DNS/Netzwerk in der DinD-Umgebung versagt.

Loesung: container: komplett entfernen, Job laeuft direkt im
Runner. Spart den Pull, spart die apt-Installationen und umgeht
das DNS-Problem.
2026-04-15 22:29:31 +02:00
Eddy
51b5a58c63 [appimage] Fix: DNS-Konfiguration für DinD-Container
Some checks failed
Build AppImage / build (push) Failing after 1m49s
- Container-Options: --dns 8.8.8.8 --dns 1.1.1.1
- Fallback-Step: /etc/resolv.conf ergänzen
- Löst "Could not resolve host" im Forgejo Runner

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-15 14:47:42 +02:00
Eddy
424ab73e1d [appimage] Fix: rust:1.83-bookworm Image + Node.js Installation
Some checks failed
Build AppImage / build (push) Failing after 2m18s
2026-04-15 14:24:19 +02:00
Eddy
2c64963553 CI: Runner-Label auf 'docker' geändert + Forgejo API Upload
All checks were successful
Build AppImage / build (push) Has been skipped
- runs-on: docker (statt ubuntu-latest)
- Container: aspect-build/rust:stable-node22-bookworm
- Manueller git clone mit REGISTRY_TOKEN
- Forgejo API für Release-Upload (statt GitHub Action)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-15 14:18:35 +02:00
Eddy
e17d94a078 CI: AppImage Build Pipeline für Forgejo Actions
Some checks are pending
Build AppImage / build (push) Waiting to run
- Triggert bei [appimage] im Commit oder Release-Tag (v*)
- Baut mit Tauri-Container + Node 22 + Rust stable
- Lädt AppImage als Artifact hoch
- Bei Tag: Erstellt automatisch Release mit AppImage

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-15 14:16:54 +02:00