Some checks failed
CI/CD Pipeline / Code Format (push) Failing after 6s
CI/CD Pipeline / Clippy Lints (push) Failing after 11s
CI/CD Pipeline / Unit Tests (push) Failing after 1s
CI/CD Pipeline / Build Debian Package (push) Has been skipped
CI/CD Pipeline / Build RPM Package (push) Has been skipped
CI/CD Pipeline / Build Alpine Package (push) Has been skipped
CI/CD Pipeline / Build Arch Package (push) Has been skipped
CI/CD Pipeline / Security Audit (push) Failing after 1s
- Replace generic "linux" runner label with dedicated per-OS labels (ubuntu-24.04, fedora, alpine, arch) - Remove all container declarations (native runner execution) - Add build gate dependencies: build jobs need fmt+clippy+test - Extract release upload logic into reusable scripts/upload-release.sh - Fix build-alpine.sh: remove hardcoded container paths, add SKIP_CARGO_BUILD support - Fix build-arch.sh: remove hardcoded container paths, add SKIP_CARGO_BUILD support - Fix build-rpm.sh: remove sudo, native runner compatible - Remove Dockerfile.rpm and Dockerfile.arch (no longer needed) - Add sudo to Ubuntu/Fedora/Arch package installs for safety - Add nodejs to Alpine deps for Gitea Actions compatibility - Make upload-release.sh POSIX sh compatible (Alpine) - Fix curl -sf to curl -s in upload-release.sh (404 on new releases)
131 lines
4.3 KiB
Bash
131 lines
4.3 KiB
Bash
#!/bin/sh
|
|
# Build Alpine Package (.apk)
|
|
# Run on: Alpine Linux 3.18+
|
|
# Designed for native Gitea Actions runner execution
|
|
|
|
set -e
|
|
|
|
echo "=== Linux Patch API - Alpine Build Script ==="
|
|
echo ""
|
|
|
|
# Source cargo environment (for rustup-installed toolchain in CI)
|
|
if [ -f "$HOME/.cargo/env" ]; then
|
|
. "$HOME/.cargo/env"
|
|
fi
|
|
|
|
# Check if running on Alpine
|
|
if ! command -v abuild &> /dev/null; then
|
|
echo "Installing Alpine build tools..."
|
|
apk add --no-cache alpine-sdk rust cargo openssl-dev openrc git abuild gcc
|
|
fi
|
|
|
|
# Generate abuild signing keys
|
|
echo "Generating abuild signing keys..."
|
|
apk add --no-cache abuild
|
|
abuild-keygen -a -n 2>&1 | tee /tmp/keygen.log
|
|
KEYFILE=$(ls /root/.abuild/*.rsa 2>/dev/null | head -1)
|
|
if [ -z "$KEYFILE" ]; then
|
|
KEYFILE=$(ls /root/.abuild/-*.rsa 2>/dev/null | head -1)
|
|
fi
|
|
echo "Found key: $KEYFILE"
|
|
echo "PACKAGER_PRIVKEY=\"$KEYFILE\"" > /etc/abuild.conf
|
|
cat /etc/abuild.conf
|
|
|
|
# Setup build environment
|
|
echo "Setting up build environment..."
|
|
export CBUILDROOT=$(pwd)/.abuild
|
|
mkdir -p "$CBUILDROOT"
|
|
|
|
# Build release binary
|
|
if [ -z "$SKIP_CARGO_BUILD" ]; then
|
|
echo "Building release binary..."
|
|
cargo build --release --target x86_64-unknown-linux-musl
|
|
else
|
|
echo "Skipping cargo build (SKIP_CARGO_BUILD is set)"
|
|
fi
|
|
|
|
# Create package directory
|
|
PKGDIR=$(pwd)/apk-package
|
|
mkdir -p "$PKGDIR"/usr/bin
|
|
mkdir -p "$PKGDIR"/etc/linux_patch_api
|
|
mkdir -p "$PKGDIR"/etc/init.d
|
|
|
|
# Copy files
|
|
cp target/x86_64-unknown-linux-musl/release/linux-patch-api "$PKGDIR"/usr/bin/
|
|
chmod 755 "$PKGDIR"/usr/bin/linux-patch-api
|
|
cp configs/linux-patch-api-openrc "$PKGDIR"/etc/init.d/linux-patch-api
|
|
chmod 755 "$PKGDIR"/etc/init.d/linux-patch-api
|
|
cp configs/whitelist.yaml.example "$PKGDIR"/etc/linux_patch_api/whitelist.yaml
|
|
|
|
# Determine workspace path for APKBUILD
|
|
WORKSPACE_DIR=$(pwd)
|
|
|
|
# Create APKBUILD
|
|
echo "Creating APKBUILD..."
|
|
cat > APKBUILD << 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"
|
|
makedepends=""
|
|
depends="openrc"
|
|
source=""
|
|
|
|
package() {
|
|
install -d "\$pkgdir"/usr/bin
|
|
install -d "\$pkgdir"/etc/linux_patch_api
|
|
install -d "\$pkgdir"/etc/init.d
|
|
cp -r ${WORKSPACE_DIR}/apk-package/usr/bin/* "\$pkgdir"/usr/bin/
|
|
cp -r ${WORKSPACE_DIR}/apk-package/etc/linux_patch_api/* "\$pkgdir"/etc/linux_patch_api/
|
|
cp -r ${WORKSPACE_DIR}/apk-package/etc/init.d/* "\$pkgdir"/etc/init.d/
|
|
}
|
|
EOF
|
|
|
|
# Generate checksums for APKBUILD sources
|
|
echo "Generating checksums..."
|
|
|
|
# Build APK package
|
|
echo "Building APK package..."
|
|
|
|
# For CI environments where we may run as root or as a build user
|
|
if [ "$(id -u)" = "0" ]; then
|
|
echo "Running as root - creating build user for abuild..."
|
|
adduser -D -s /bin/sh builduser 2>/dev/null || true
|
|
addgroup builduser abuild 2>/dev/null || usermod -aG abuild builduser
|
|
chown -R builduser:builduser "$(pwd)"
|
|
chown -R builduser:builduser /root/packages 2>/dev/null || true
|
|
mkdir -p /home/builduser/.abuild
|
|
cp /root/.abuild/* /home/builduser/.abuild/
|
|
chown -R builduser:builduser /home/builduser/.abuild
|
|
|
|
KEYFILE=$(ls /home/builduser/.abuild/*.rsa 2>/dev/null | head -1)
|
|
if [ -z "$KEYFILE" ]; then
|
|
KEYFILE=$(ls /home/builduser/.abuild/-*.rsa 2>/dev/null | head -1)
|
|
fi
|
|
|
|
echo "Key file: $KEYFILE"
|
|
echo "PACKAGER_PRIVKEY=\"$KEYFILE\"" > /home/builduser/.abuild/abuild.conf
|
|
chown builduser:builduser /home/builduser/.abuild/abuild.conf
|
|
su - builduser -c "cd $(pwd) && abuild checksum && abuild -d -F && cp /home/builduser/packages/x86_64/*.apk ./releases/ 2>/dev/null || cp /home/builduser/packages/*.apk ./releases/ 2>/dev/null || ls -la /home/builduser/packages/"
|
|
else
|
|
abuild checksum
|
|
abuild -F -r
|
|
cp ~/packages/x86_64/*.apk releases/ 2>/dev/null || cp ~/packages/*.apk releases/ 2>/dev/null || true
|
|
fi
|
|
|
|
# Copy to releases directory
|
|
echo ""
|
|
echo "Copying package to releases/..."
|
|
mkdir -p releases
|
|
cp ~/packages/x86_64/*.apk releases/ 2>/dev/null || cp /root/packages/x86_64/*.apk releases/ || find / -name "linux-patch-api-*.apk" -exec cp {} releases/ \; 2>/dev/null || true
|
|
|
|
echo ""
|
|
echo "=== Build Complete ==="
|
|
echo "Package: releases/linux-patch-api-*.apk"
|
|
echo ""
|
|
echo "Install with:"
|
|
echo " sudo apk add --allow-unstable ./releases/linux-patch-api-*.apk"
|