autotest: remove report of pull failure

Nobody is ever reading these
This commit is contained in:
Peter Barker 2022-07-23 13:22:17 +10:00 committed by Andrew Tridgell
parent 4852ac332d
commit 41b8728296

View File

@ -52,27 +52,6 @@ lock_file build.lck || {
(
date
report() {
d="$1"
old="$2"
new="$3"
cat <<EOF | mail -s 'build failed' ardupilot.devel@google.com
A build of $d failed at `date`
You can view the build logs at https://autotest.ardupilot.org/
A log of the commits since the last attempted build is below
`git log $old $new`
EOF
}
report_pull_failure() {
d="$1"
git show origin/master | mail -s 'APM pull failed' ardupilot.devel@google.com
exit 1
}
oldhash=$(cd APM && git rev-parse HEAD)
echo "Updating APM"
@ -81,7 +60,7 @@ git checkout -f master
git fetch origin
git submodule update --recursive --force
git reset --hard origin/master
git pull || report_pull_failure
git pull
git clean -f -f -x -d -d
git tag autotest-$(date '+%Y-%m-%d-%H%M%S') -m "test tag `date`"
popd