Add namcapAnalysis()

This commit is contained in:
Santiago Lo Coco 2022-02-28 23:04:25 -03:00
parent 025da924aa
commit 3c18984e5d
1 changed files with 13 additions and 0 deletions

View File

@ -25,6 +25,18 @@ exportFile() {
fi
}
namcapAnalysis() {
pacman -S --noconfirm namcap
namcapOutput=$(namcap PKGBUILD)
echo "::warning::$namcapOutput"
if [ -f "$pkgFile" ]; then
relPkgFile="$(realpath --relative-base="$baseDir" "$pkgFile")"
namcapOutput=$(namcap "$pkgFile")
echo "::warning::$relPkgFile:$namcapOutput"
fi
}
runScript() {
set -euo pipefail
@ -40,6 +52,7 @@ runScript() {
sudo -u nobody makepkg -s --noconfirm
exportPackageFiles
namcapAnalysis
newFiles=$(find -H "$PWD" -not -path '*.git*')
mapfile -t toRemove < <(printf '%s\n%s\n' "$newFiles" "$oldFiles" | sort | uniq -u)