Tag
Hash :
e6db6399
Author :
Date :
2020-09-20T10:11:56
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
#!/bin/sh
#
# Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
prog=`basename $0`
usage="$prog [-b branch] [-f] [-w worktree ] [ -r from-address ] email-address [email-address ...]"
branch=master
worktree=$HOME/got
fromaddr_arg=
force=0
args=`getopt b:fw:r: $*`
if [ $? -ne 0 ]
then
echo "usage: $usage" >&2
exit 1
fi
set -- $args
while [ $# -ne 0 ]; do
case "$1"
in
-b)
branch="$2"; shift; shift;;
-f)
force=1; shift;;
-w)
worktree="$2"; shift; shift;;
-r)
fromaddr_arg="-r $2"; shift; shift;;
--)
shift; break;;
esac
done
recipients="$@"
if [ -z "$recipients" ]; then
echo "usage: $usage" >&2
exit 1
fi
log_cmd() {
logfile=$1
shift
echo \$ $@ >> $logfile
$* >> $logfile 2>&1
}
ncpu=`sysctl -n hw.ncpuonline`
lockfile=$worktree/.${prog}.lock
cd "$worktree"
if [ $? -ne 0 ]; then
exit 1
fi
lockfile -r 3 "$lockfile" || exit 1
trap "rm -f '$lockfile'" HUP INT QUIT KILL TERM
rm -f regress.log failures.log
echo -n "$prog for branch '$branch' on " > build.log
date -u >> build.log
printf "\nRunning on " >> build.log
sysctl -n kern.version >> build.log
printf "\n\tCleaning the work tree\n\n" >> build.log
log_cmd build.log got status
log_cmd build.log make clean
printf "\n\n\tUpdating the work tree\n\n" >> build.log
log_cmd build.log cat .got/base-commit
old_basecommit=`cat .got/base-commit`
log_cmd build.log /usr/local/bin/got update -b "$branch"
update_status="$?"
if [ "$update_status" != "0" ]; then
mail $fromaddr_arg -s "$prog update failure" $recipients < build.log
rm -rf "$lockfile"
exit 0
fi
new_basecommit=`cat .got/base-commit`
if [ "$force" != "1" -a "$old_basecommit" == "$new_basecommit" ]; then
rm -rf "$lockfile"
exit 0
fi
printf "\n\n\tTesting a regular dev build\n\n" >> build.log
log_cmd build.log make obj
log_cmd build.log make -j $ncpu
build_status="$?"
if [ "$build_status" != "0" ]; then
mail $fromaddr_arg -s "$prog build failure" $recipients < build.log
rm -rf "$lockfile"
exit 0
fi
log_cmd build.log make install
log_cmd build.log make -j $ncpu web
build_status="$?"
if [ "$build_status" != "0" ]; then
mail $fromaddr_arg -s "$prog build failure" $recipients < build.log
rm -rf "$lockfile"
exit 0
fi
printf "\n\n\tRunning tests\n\n" >> build.log
log_cmd regress.log env PATH=$HOME/bin:$PATH make regress
regress_status="$?"
cat regress.log >> build.log
egrep "test.*failed" regress.log > failures.log
regress_failure_grep="$?"
if [ "$regress_status" != "0" -o "$regress_failure_grep" == "0" ]; then
printf "\n\n\t Test failures:\n\n" >> build.log
cat failures.log >> build.log
mail $fromaddr_arg -s "$prog regress failure" $recipients < build.log
rm -rf "$lockfile"
exit 0
fi
printf "\n\n\tTesting a release build\n\n" >> build.log
log_cmd build.log make clean
log_cmd build.log make obj
log_cmd build.log make -j $ncpu GOT_RELEASE=Yes
log_cmd build.log make -j $ncpu GOT_RELEASE=Yes web
build_status="$?"
if [ "$build_status" != "0" ]; then
mail $fromaddr_arg -s "$prog release mode build failure" $recipients < build.log
rm -rf "$lockfile"
exit 0
fi
rm -f "$lockfile"
exit 0