add as CI script to check ebuilds

This commit is contained in:
XGQT 2020-03-20 18:26:37 +01:00
parent c7f07c08b7
commit 7ea0cf420a
No known key found for this signature in database
GPG Key ID: 2089DEC77862433A
1 changed files with 31 additions and 0 deletions

31
check-commit Executable file
View File

@ -0,0 +1,31 @@
#!/bin/sh
# CI Ebuild commit tester
# Run this in a overlay directory.
# This script uses pkgcheck and repoman
# to check the latest commit for QA issues.
# Check if we are in a git repo
if ! git status >/dev/null; then
echo Stop
exit 1
fi
# Use pkgchek
pkgcheck scan --commits
# Iterate through changed files in last commit
# For each of these use dirname to change directory
# to the one where the changed file resides
# and run repoman in there
for file in $(git diff --name-only HEAD HEAD~1)
do
if cd $(dirname "${file}"); then
echo
echo "Directory $(pwd):"
repoman -Idix
cd - >/dev/null
fi
done