03776c8c48
This will tell us which checks failed, and how many. It also suppresses some useless spammy output from `make sort` (we never need to see any actual output, as it never tells us anything useful; the useful info is what it changes). Signed-off-by: Adam Williamson <awilliam@redhat.com>
29 lines
510 B
Bash
Executable File
29 lines
510 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
main() {
|
|
failure=0
|
|
|
|
make sort > /dev/null 2>&1 || {
|
|
echo "Sort failed!"
|
|
((failure+=1))
|
|
}
|
|
make validate || {
|
|
echo "Validate failed!"
|
|
((failure+=1))
|
|
}
|
|
|
|
# Fail if any changes were made to the repo
|
|
if [[ -n "(git status --short)" ]]; then
|
|
echo "git status failed!"
|
|
((failure+=1))
|
|
fi
|
|
if [[ $failure -gt 0 ]]; then
|
|
echo "${failure} check(s) failed!"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
main "${@}"
|