Fix: usa aarch64-linux-gnu-strip per binari arm64
Nightly Build / build (push) Successful in 6m15s

This commit is contained in:
2026-07-20 00:14:51 +01:00
parent cb1b48a15d
commit b6128e4053
+6 -1
View File
@@ -62,9 +62,14 @@ if [ ! -f "$TARGET_DIR/skald-setup" ]; then
fi
# ── Copy binaries (stripped) ──────────────────────────────────────────────────
if [ "$ARCH" = "arm64" ]; then
STRIP="aarch64-linux-gnu-strip"
else
STRIP="strip"
fi
cp "$TARGET_DIR/skald" "$STAGING/bin/skald"
cp "$TARGET_DIR/skald-setup" "$STAGING/bin/skald-setup"
strip "$STAGING/bin/skald" "$STAGING/bin/skald-setup"
$STRIP "$STAGING/bin/skald" "$STAGING/bin/skald-setup"
chmod 755 "$STAGING/bin/skald" "$STAGING/bin/skald-setup"
# ── Copy runtime assets ───────────────────────────────────────────────────────