Private
Public Access
1
0

feat: add Pacman backend for Arch Linux, fix Arch CI stale packages

This commit is contained in:
2026-05-20 22:24:06 +00:00
parent 58ad92d431
commit 6fab250ea8
7 changed files with 513 additions and 6 deletions

View File

@ -14,6 +14,11 @@ if ! command -v makepkg &> /dev/null; then
exit 1
fi
# Clean stale packages from previous builds
rm -f releases/linux-patch-api-*.pkg.tar.zst 2>/dev/null || true
rm -f /home/builduser/repo/releases/linux-patch-api-*.pkg.tar.zst 2>/dev/null || true
rm -f /home/builduser/repo/*.pkg.tar.zst 2>/dev/null || true
# Build release binary
if [ -z "$SKIP_CARGO_BUILD" ]; then
echo "Building release binary..."