2
0
Fork 0
archlinux-package-action/entrypoint.sh
Wachtl Enterprises LLC 31aeba634f Enable action to be used as a package builder
This commit adds options to enable the action to be used inside a CI
based mirror deployment. To enable this, the `pkg`,`copy_all_sources`,
`makepkg_gpg` and `mirror` options were added to the action.

Signed-off-by: Wachtl Enterprises LLC <tyrolyean@escpe.net>
2025-02-27 17:16:13 +01:00

109 lines
2.7 KiB
Bash
Executable file

#!/bin/bash
set -e
# Set path
WORKPATH=$GITHUB_WORKSPACE/$INPUT_PATH
HOME=/home/builder
echo "::group::Copying files from $WORKPATH to $HOME/gh-action"
# Set path permision
cd $HOME
mkdir gh-action
cd gh-action
cp -rfv "$GITHUB_WORKSPACE"/.git ./
if [[ $INPUT_COPY_ALL_SOURCES == true ]]; then
cp -fv "$WORKPATH"/* ./
else
cp -fv "$WORKPATH"/PKGBUILD ./
fi
echo "::endgroup::"
# Set mirror
if [[ -n $INPUT_MIRROR ]]; then
echo "::group::Setting mirror to $INPUT_MIRROR"
sudo bash -c "echo Server = ${INPUT_MIRROR@Q} > /etc/pacman.d/mirrorlist"
echo "::endgroup::"
fi
# Update archlinux-keyring
if [[ $INPUT_ARCHLINUX_KEYRING == true ]]; then
echo "::group::Updating archlinux-keyring"
pacman -S archlinux-keyring
echo "::endgroup::"
fi
# Update pkgver
if [[ -n $INPUT_PKGVER ]]; then
echo "::group::Updating pkgver on PKGBUILD"
sed -i "s:^pkgver=.*$:pkgver=$INPUT_PKGVER:g" PKGBUILD
git diff PKGBUILD
echo "::endgroup::"
fi
# Update pkgver
if [[ -n $INPUT_PKGREL ]]; then
echo "::group::Updating pkgrel on PKGBUILD"
sed -i "s:^pkgrel=.*$:pkgrel=$INPUT_PKGREL:g" PKGBUILD
git diff PKGBUILD
echo "::endgroup::"
fi
# Update checksums
if [[ $INPUT_UPDPKGSUMS == true ]]; then
echo "::group::Updating checksums on PKGBUILD"
updpkgsums
git diff PKGBUILD
echo "::endgroup::"
fi
# Generate .SRCINFO
if [[ $INPUT_SRCINFO == true ]]; then
echo "::group::Generating new .SRCINFO based on PKGBUILD"
makepkg --printsrcinfo >.SRCINFO
git diff .SRCINFO
echo "::endgroup::"
fi
# Validate with namcap
if [[ $INPUT_NAMCAP == true ]]; then
echo "::group::Validating PKGBUILD with namcap"
namcap -i PKGBUILD
echo "::endgroup::"
fi
# Install depends using paru from aur
if [[ $INPUT_AUR == true ]]; then
echo "::group::Installing depends using paru"
source PKGBUILD
paru -Syu --removemake --needed --noconfirm "${depends[@]}" "${makedepends[@]}"
echo "::endgroup::"
fi
# import gpg keys into keyring
if [[ -n $INPUT_MAKEPKG_GPG ]]; then
echo "::group::Import GPG keys into keyring"
gpg --recv-keys $INPUT_MAKEPKG_GPG
echo "::endgroup::"
fi
# Run makepkg
if [[ -n $INPUT_FLAGS ]]; then
echo "::group::Running makepkg with flags"
makepkg $INPUT_FLAGS
echo "::endgroup::"
fi
# Copy built packages back to workdir if user specified
if [[ $INPUT_PKG == true ]]; then
echo "::group::Copy built packages to workdir"
sudo cp -fv *.pkg.tar.* "$WORKPATH"/
echo "::endgroup::"
fi
echo "::group::Copying files from $HOME/gh-action to $WORKPATH"
sudo cp -fv PKGBUILD "$WORKPATH"/PKGBUILD
if [[ -e .SRCINFO ]]; then
sudo cp -fv .SRCINFO "$WORKPATH"/.SRCINFO
fi
echo "::endgroup::"