Some checks failed
CI/CD Pipeline / Code Format (push) Successful in 1s
CI/CD Pipeline / Clippy Lints (push) Successful in 36s
CI/CD Pipeline / Unit Tests (push) Successful in 47s
CI/CD Pipeline / Security Audit (push) Successful in 5s
CI/CD Pipeline / Build Debian Package (push) Failing after 1m57s
CI/CD Pipeline / Build Arch Package (push) Failing after 1m46s
CI/CD Pipeline / Build Alpine Package (push) Failing after 3m8s
CI/CD Pipeline / Build RPM Package (push) Failing after 3m27s
CRITICAL: Previous commit 2774e02 did not include these fixes.
Debian (debian/rules):
- Use && to keep cargo build in same shell as . "$HOME/.cargo/env"
- Make runs each recipe line in a separate shell
Arch (build-arch.sh):
- Use << "EOF" heredoc with hardcoded path to prevent $pkgdir expansion
- $pkgdir must be literal for makepkg to expand at runtime
Alpine (build-alpine.sh):
- Copy signing public key to /etc/apk/keys/ BEFORE abuild
- Use || true on abuild because index update may fail but APK is still created
91 lines
2.5 KiB
Bash
91 lines
2.5 KiB
Bash
#!/bin/bash
|
|
# Build Arch Linux Package (.pkg.tar.zst)
|
|
# Run on: Arch Linux / Manjaro
|
|
# Designed for native Gitea Actions runner execution
|
|
|
|
set -e
|
|
|
|
echo "=== Linux Patch API - Arch Build Script ==="
|
|
echo ""
|
|
|
|
# Check if running on Arch
|
|
if ! command -v makepkg &> /dev/null; then
|
|
echo "Error: makepkg not found. This script must run on Arch Linux."
|
|
exit 1
|
|
fi
|
|
|
|
# Build release binary
|
|
if [ -z "$SKIP_CARGO_BUILD" ]; then
|
|
echo "Building release binary..."
|
|
cargo build --release
|
|
else
|
|
echo "Skipping cargo build (SKIP_CARGO_BUILD is set)"
|
|
fi
|
|
|
|
# Create package directory
|
|
PKGDIR=$(pwd)/arch-package
|
|
mkdir -p "$PKGDIR"/usr/bin
|
|
mkdir -p "$PKGDIR"/etc/linux_patch_api
|
|
mkdir -p "$PKGDIR"/usr/lib/systemd/system
|
|
|
|
# Copy files
|
|
cp target/release/linux-patch-api "$PKGDIR"/usr/bin/
|
|
chmod 755 "$PKGDIR"/usr/bin/linux-patch-api
|
|
cp configs/linux-patch-api.service "$PKGDIR"/usr/lib/systemd/system/
|
|
cp configs/config.yaml.example "$PKGDIR"/etc/linux_patch_api/config.yaml
|
|
cp configs/whitelist.yaml.example "$PKGDIR"/etc/linux_patch_api/whitelist.yaml
|
|
|
|
# Create PKGBUILD with quoted heredoc to prevent $pkgdir expansion
|
|
# $pkgdir must be literal for makepkg to expand at runtime
|
|
echo "Creating PKGBUILD..."
|
|
cat > PKGBUILD << 'EOF'
|
|
pkgname=linux-patch-api
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="Secure remote package management API for Linux systems"
|
|
url="https://gitea.moon-dragon.us/echo/linux_patch_api"
|
|
arch=('x86_64')
|
|
license=('MIT')
|
|
depends=('systemd')
|
|
|
|
package() {
|
|
cp -r /home/builduser/repo/arch-package/* "$pkgdir"/
|
|
}
|
|
EOF
|
|
|
|
# Create .SRCINFO
|
|
echo "Creating .SRCINFO..."
|
|
|
|
# Build package
|
|
echo "Building Arch package..."
|
|
|
|
# For CI environments where we may run as root
|
|
if [ "$(id -u)" = "0" ]; then
|
|
echo "Running as root - creating build user for makepkg..."
|
|
useradd -m builduser 2>/dev/null || true
|
|
|
|
# Copy repo contents to builduser home (accessible directory)
|
|
mkdir -p /home/builduser/repo
|
|
cp -r . /home/builduser/repo/
|
|
chown -R builduser:builduser /home/builduser/repo/
|
|
|
|
su - builduser -c "cd /home/builduser/repo && makepkg --printsrcinfo > .SRCINFO"
|
|
su - builduser -c "cd /home/builduser/repo && makepkg -f --noconfirm"
|
|
|
|
# Copy package to releases
|
|
mkdir -p releases
|
|
cp /home/builduser/repo/*.pkg.tar.zst releases/
|
|
else
|
|
makepkg --printsrcinfo > .SRCINFO
|
|
makepkg -f --noconfirm
|
|
mkdir -p releases
|
|
cp *.pkg.tar.zst releases/
|
|
fi
|
|
|
|
echo ""
|
|
echo "=== Build Complete ==="
|
|
echo "Package: releases/linux-patch-api-*.pkg.tar.zst"
|
|
echo ""
|
|
echo "Install with:"
|
|
echo " sudo pacman -U ./releases/linux-patch-api-*.pkg.tar.zst"
|