Add runScript()

This commit is contained in:
Santiago Lo Coco 2022-02-28 20:08:23 -03:00
parent ce619c7603
commit 9923bfc641
1 changed files with 24 additions and 20 deletions

View File

@ -1,29 +1,33 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -euo pipefail runScript() {
set -euo pipefail
pacman -Syu --noconfirm base-devel pacman -Syu --noconfirm base-devel
echo "nobody ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers echo "nobody ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
visudo -c visudo -c
chmod -R a+rw . chmod -R a+rw .
baseDir="$PWD" baseDir="$PWD"
[ -n "$INPUT_PKGDIR" ] && inBaseDir=true || inBaseDir=false [ -n "$INPUT_PKGDIR" ] && inBaseDir=true || inBaseDir=false
cd "${INPUT_PKGDIR:-.}" cd "${INPUT_PKGDIR:-.}"
oldFiles=$(find -H "$PWD" -not -path '*.git*') oldFiles=$(find -H "$PWD" -not -path '*.git*')
sudo -u nobody makepkg -s --noconfirm sudo -u nobody makepkg -s --noconfirm
sudo -u nobody makepkg --printsrcinfo > .SRCINFO sudo -u nobody makepkg --printsrcinfo > .SRCINFO
echo "::set-output name=srcInfo::.SRCINFO" echo "::set-output name=srcInfo::.SRCINFO"
[ $inBaseDir = false ] && mv .SRCINFO /github/workspace [ $inBaseDir = false ] && mv .SRCINFO /github/workspace
pkgFile=$(sudo -u nobody makepkg --packagelist) pkgFile=$(sudo -u nobody makepkg --packagelist)
relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")" relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
echo "::set-output name=pkgFile::$relPkgFile" echo "::set-output name=pkgFile::$relPkgFile"
[ $inBaseDir = false ] && mv "$pkgFile" /github/workspace [ $inBaseDir = false ] && mv "$pkgFile" /github/workspace
newFiles=$(find -H "$PWD" -not -path '*.git*') newFiles=$(find -H "$PWD" -not -path '*.git*')
mapfile -t toRemove < <(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u) mapfile -t toRemove < <(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)
rm -rf "${toRemove[@]}" rm -rf "${toRemove[@]}"
}
runScript "$@"