Add pkgbuild.sh

This commit is contained in:
Santiago Lo Coco 2022-02-27 17:45:01 -03:00
parent ead3cdb418
commit 191d5b41ea
1 changed files with 24 additions and 0 deletions

24
pkgbuild.sh Normal file
View File

@ -0,0 +1,24 @@
#!/usr/bin/env bash
pacman -Syu --noconfirm --needed base-devel
useradd builder -m
echo "builder ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
chmod -R a+rw .
baseDir="$PWD"
cd "${INPUT_PKGDIR:-.}"
oldFiles=$(find -H "$PWD")
sudo -H -u builder makepkg --syncdeps --noconfirm ${INPUT_MAKEPKGARGS:-}
sudo -H -u builder makepkg --printsrcinfo > .SRCINFO
echo "::set-output name=srcInfo::.SRCINFO"
sudo mv .SRCINFO /github/workspace
relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
echo "::set-output name=pkgFile::$relPkgFile"
sudo mv "$pkgFile" /github/workspace
newFiles=$(find -H $PWD)
toRemove=$(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)
rm -rf $toRemove