Blame


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