added urls in sent mails - extracted and cleaned up the yum/gpg part
[build.git] / vbuild-nightly.sh
1 #!/bin/bash
2 REVISION=$(echo '$Revision$' | sed -e 's,\$,,g' -e 's,^\w*:\s,,' )
3
4 COMMANDPATH=$0
5 COMMAND=$(basename $0)
6
7 # default values, tunable with command-line options
8 DEFAULT_FCDISTRO=f8
9 DEFAULT_PLDISTRO=planetlab
10 DEFAULT_PERSONALITY=linux32
11 DEFAULT_BASE="@DATE@--@PLDISTRO@-@FCDISTRO@-@PERSONALITY@"
12 DEFAULT_SVNPATH="http://svn.planet-lab.org/svn/build/trunk"
13 DEFAULT_TESTCONFIG="default"
14 DEFAULT_IFNAME=eth0
15
16 # web publishing results
17 DEFAULT_WEBPATH="/build/@PLDISTRO@/"
18
19 # default gpg path used in signing yum repo
20 DEFAULT_GPGPATH="/etc/planetlab"
21 # default email to use in gpg secring
22 DEFAULT_GPGUID="root@$( /bin/hostname )"
23
24 # for the test part
25 DEFAULT_TESTBUILDURL="http://build.onelab.eu/"
26 TESTBOXSSH=root@testbox.onelab.eu
27 ####################
28 # assuming vserver runs in UTC
29 DATE=$(date +'%Y.%m.%d')
30
31 # temporary - wrap a quick summary of suspicious stuff
32 # this is to focus on installation that go wrong
33 # use with care, a *lot* of other things can go bad as well
34 function summary () {
35     from=$1; shift
36     echo "******************** BEG SUMMARY" 
37     python - $from <<EOF
38 #!/usr/bin/env python
39 # read a full log and tries to extract the interesting stuff
40
41 import sys,re
42 m_show_line=re.compile(".* BEG (RPM|VSERVER).*|.*'boot'.*|\* .*|.*is not installed.*")
43 m_installing_any=re.compile('\r  (Installing:[^\]]*]) ')
44 m_installing_err=re.compile('\r  (Installing:[^\]]*])(..+)')
45 m_installing_end=re.compile('Installed:.*')
46 m_installing_doc1=re.compile("(.*)install-info: No such file or directory for /usr/share/info/\S+(.*)")
47 m_installing_doc2=re.compile("(.*)grep: /usr/share/info/dir: No such file or directory(.*)")
48
49 def summary (filename):
50
51     try:
52         if filename=="-":
53             filename="stdin"
54             f=sys.stdin
55         else:
56             f=open(filename)
57         echo=False
58         for line in f.xreadlines():
59             # first off : discard warnings related to doc
60             if m_installing_doc1.match(line):
61                 (begin,end)=m_installing_doc1.match(line).groups()
62                 line=begin+end
63             if m_installing_doc2.match(line):
64                 (begin,end)=m_installing_doc2.match(line).groups()
65                 line=begin+end
66             # unconditionnally show these lines
67             if m_show_line.match(line):
68                 print '>>>',line,
69             # an 'installing' line with messages afterwards : needs to be echoed
70             elif m_installing_err.match(line):
71                 (installing,error)=m_installing_err.match(line).groups()
72                 print '>>>',installing
73                 print '>>>',error
74                 echo=True
75             # closing an 'installing' section
76             elif m_installing_end.match(line):
77                 echo=False
78             # any 'installing' line
79             elif m_installing_any.match(line):
80                 if echo: 
81                     installing=m_installing_any.match(line).group(1)
82                     print '>>>',installing
83                 echo=False
84             # print lines when echo is true
85             else:
86                 if echo: print '>>>',line,
87         f.close()
88     except:
89         print 'Failed to analyze',filename
90
91 for arg in sys.argv[1:]:
92     summary(arg)
93 EOF
94     echo "******************** END SUMMARY" 
95 }
96
97
98 # Notify recipient of failure or success, manage various stamps 
99 function failure() {
100     set -x
101     mkdir -p ${WEBPATH}
102     cp $LOG ${WEBLOG}
103     summary $LOG >> ${WEBLOG}
104     (echo -n "============================== $COMMAND: failure at " ; date ; tail -c 30k $WEBLOG) > ${WEBLOG}.ko
105     if [ -n "$MAILTO" ] ; then
106         ( \
107             echo "See full build log at ${LOG_URL}" ; \
108             echo "and tail version at ${LOG_URL}.ko" ; \
109             echo "See complete set of testlogs at ${TESTLOGS_URL}" ; \
110             tail -c 30k ${WEBLOG} ) | mail -s "Failures for build ${BASE}" $MAILTO
111     fi
112     exit 1
113 }
114
115 function success () {
116     set -x
117     mkdir -p ${WEBPATH}
118     cp $LOG ${WEBLOG}
119     summary $LOG >> ${WEBLOG}
120     if [ -n "$DO_TEST" ] ; then
121         ( \
122             echo "Successfully built and tested" ; \
123             echo "See full build log at ${LOG_URL}" ; \
124             echo "See complete set of testlogs at ${TESTLOGS_URL}" ; \
125             ) > ${WEBLOG}.pass
126         rm -f ${WEBLOG}.ok ${WEBLOG}.ko
127     else
128         ( \
129             echo "Successfully built, no test requested" ; \
130             echo "See full build log at ${LOG_URL}" ; \
131             ) > ${WEBLOG}.ok
132     fi
133     if [ -n "$MAILTO" ] ; then
134         ( \
135             echo "$PLDISTRO ($BASE) build for $FCDISTRO completed on $(date)" ; \
136             echo "See full build log at ${LOG_URL}" ; \
137             [ -n "$DO_TEST" ] && echo "See complete set of testlogs at ${TESTLOGS_URL}" ) \
138             | mail -s "Successful build for ${BASE}" $MAILTO
139     fi
140     exit 0
141 }
142
143 # run in the vserver - do not manage success/failure, will be done from the root ctx
144 function build () {
145     set -x
146     set -e
147
148     echo -n "============================== Starting $COMMAND:build on "
149     date
150
151     cd /build
152   # if TAGSRELEASE specified : update PLDISTROTAGS with this tag
153     if [ -n "$TAGSRELEASE" ] ; then
154         svn up -r $TAGSRELEASE $PLDISTROTAGS
155     fi
156
157     show_env
158     
159     echo "Running make IN $(pwd)"
160     
161     # stuff our own variable settings
162     MAKEVARS=("PLDISTRO=${PLDISTRO}" "${MAKEVARS[@]}")
163     MAKEVARS=("PLDISTROTAGS=${PLDISTROTAGS}" "${MAKEVARS[@]}")
164     MAKEVARS=("NIGHTLY_BASE=${BASE}" "${MAKEVARS[@]}")
165     MAKEVARS=("NIGHTLY_PERSONALITY=${PERSONALITY}" "${MAKEVARS[@]}")
166     MAKEVARS=("build-SVNPATH=${SVNPATH}" "${MAKEVARS[@]}")
167
168     # stage1
169     make -C /build $DRY_RUN "${MAKEVARS[@]}" stage1=true 
170     # versions
171     make -C /build $DRY_RUN "${MAKEVARS[@]}" versions
172     # store tests_svnpath
173     make -C /build $DRY_RUN "${MAKEVARS[@]}" stage1=true tests_svnpath
174     # actual stuff
175     make -C /build $DRY_RUN "${MAKEVARS[@]}" $MAKETARGETS
176
177 }
178
179 # this was formerly run in the myplc-devel chroot but now is run in the root context,
180 # this is so that the .ssh config gets done manually, and once and for all
181 function runtest () {
182     set -x
183     set -e
184     trap failure ERR INT
185
186     echo -n "============================== Starting $COMMAND:runtest on $(date)"
187
188     # where to find TESTS_SVNPATH
189     stamp=/vservers/$BASE/build/tests_svnpath
190     if [ ! -f $stamp ] ; then
191         echo "$COMMAND: Cannot figure TESTS_SVNPATH from missing $stamp"
192         failure
193         exit 1
194     fi
195     TESTS_SVNPATH=$(cat $stamp)
196     # xxx - Thierry - need to rework the test framework in tests/system so it can work
197     # with the entire tests/ module checked out, rather than only tests/system/ 
198     # ugly workaround for now
199     SYSTEM_SVNPATH=${TESTS_SVNPATH}/system
200
201     ### the URL to the RPMS/<arch> location
202     url=""
203     for a in i386 x86_64; do
204         archdir=/vservers/$BASE/build/RPMS/$a
205         if [ -d $archdir ] ; then
206             url=$(echo $archdir | sed -e "s,/vservers/$BASE/build,${TESTBUILDURL}${PLDISTRO}/${BASE},")
207             break
208         fi
209     done
210
211     if [ -z "$url" ] ; then
212         echo "$COMMAND: Cannot locate arch URL for testing"
213         failure
214         exit 1
215     fi
216
217     # test directory name on test box
218     testdir=${BASE}
219     # clean it
220     ssh -n ${TESTBOXSSH} rm -rf ${testdir}
221     # check it out 
222     ssh -n ${TESTBOXSSH} svn co ${SYSTEM_SVNPATH} ${testdir}
223     # check out the entire tests/ module (with system/ duplicated) as a subdir - see xxx above
224     ssh -n ${TESTBOXSSH} svn co ${TESTS_SVNPATH} ${testdir}/tests
225     # invoke test on testbox - pass url and build url - so the tests can use vtest-init-vserver.sh
226     configs=""
227     for config in ${TESTCONFIG} ; do
228         configs="$configs --config $config"
229     done
230     test_env="-p $PERSONALITY -d $PLDISTRO -f $FCDISTRO"
231
232     # need to proceed despite of set -e
233     success=true
234     ssh 2>&1 -n ${TESTBOXSSH} ${testdir}/runtest --build ${SVNPATH} --url ${url} $configs $test_env --all || success=
235
236     # gather logs in the vserver
237     mkdir -p /vservers/$BASE/build/testlogs
238     ssh 2>&1 -n ${TESTBOXSSH} tar -C ${testdir}/logs -cf - . | tar -C /vservers/$BASE/build/testlogs -xf - || true
239     # push them to the build web
240     rsync --archive --delete /vservers/$BASE/build/testlogs/ $WEBPATH/$BASE/testlogs/
241     chmod -R a+r $WEBPATH/$BASE/testlogs/
242
243     if [ -z "$success" ] ; then
244         failure
245     fi
246     
247     echo -n "============================== End $COMMAND:runtest on $(date)"
248 }
249
250 function in_root_context () {
251     rpm -q util-vserver > /dev/null 
252 }
253
254 function sign_and_index_node_packages () {
255     echo "Signing & indexing node packages"
256     
257     need_createrepo=""
258
259     repository=$WEBPATH/$BASE/RPMS/
260     # the rpms that need signing
261     new_rpms=
262     # and the corresponding stamps
263     new_stamps=
264
265     for package in $(find $repository/ -name '*.rpm') ; do
266         stamp=$repository/signed-stamps/$(basename $package).signed
267         # If package is newer than signature stamp
268         if [ $package -nt $stamp ] ; then
269             new_rpms="$new_rpms $package"
270             new_stamps="$new_stamps $stamp"
271         fi
272         # Or than createrepo database
273         [ $package -nt $repository/repodata/repomd.xml ] && need_createrepo=true
274     done
275
276     if [ -n "$new_rpms" ] ; then
277         # Create a stamp once the package gets signed
278         mkdir $repository/signed-stamps 2> /dev/null
279         
280         # Sign RPMS. setsid detaches rpm from the terminal,
281         # allowing the (hopefully blank) GPG password to be
282         # entered from stdin instead of /dev/tty.
283         echo | setsid rpm \
284             --define "_signature gpg" \
285             --define "_gpg_path $GPGPATH" \
286             --define "_gpg_name $GPGUID" \
287             --resign $new_rpms && touch $new_stamps
288     fi
289
290      # Update repository index / yum metadata. 
291     if [ -n "$need_createrepo" ] ; then
292         if [ -f $repository/yumgroups.xml ] ; then
293             createrepo --quiet -g yumgroups.xml $repository
294         else
295             createrepo --quiet $repository
296         fi
297     fi
298 }
299
300 function show_env () {
301     set +x
302     echo FCDISTRO=$FCDISTRO
303     echo PLDISTRO=$PLDISTRO
304     echo BASE=$BASE
305     echo SVNPATH=$SVNPATH
306     echo MAKEVARS="${MAKEVARS[@]}"
307     echo DRY_RUN="$DRY_RUN"
308     echo PLDISTROTAGS="$PLDISTROTAGS"
309     echo TAGSRELEASE="$TAGSRELEASE"
310     echo -n "(might be unexpanded)"
311     echo WEBPATH="$WEBPATH"
312     echo TESTBUILDURL="$TESTBUILDURL"
313     if in_root_context ; then
314         echo PLDISTROTAGS="$PLDISTROTAGS"
315     else
316         echo "XXXXXXXXXXXXXXXXXXXX Contents of tags definition file /build/$PLDISTROTAGS"
317         cat /build/$PLDISTROTAGS
318         echo "XXXXXXXXXXXXXXXXXXXX end tags definition"
319     fi
320     set -x
321 }
322
323 function usage () {
324     echo "Usage: $COMMAND [option] make-targets"
325     echo "This is $REVISION"
326     echo "Supported options"
327     echo " -f fcdistro - defaults to $DEFAULT_FCDISTRO"
328     echo " -d pldistro - defaults to $DEFAULT_PLDISTRO"
329     echo " -p personality - defaults to $DEFAULT_PERSONALITY"
330     echo " -b base - defaults to $DEFAULT_BASE"
331     echo "    @NAME@ replaced as appropriate"
332     echo " -t pldistrotags - defaults to \${PLDISTRO}-tags.mk"
333     echo " -r tagsrelease - a release number that refers to PLDISTROTAGS - defaults to HEAD"
334     echo " -s svnpath - where to fetch the build module"
335     echo " -c testconfig - defaults to $DEFAULT_TESTCONFIG"
336     echo " -w webpath - defaults to $DEFAULT_WEBPATH"
337     echo " -W testbuildurl - defaults to $DEFAULT_TESTBUILDURL"
338     echo " -y create (and sign) yum repo in webpath"
339     echo " -g path to gpg secring used to sign rpms.  Defaults to $DEFAULT_GPGPATH" 
340     echo " -u gpg email used in secring. Defaults to $DEFAULT_GPGUID"
341     echo " -m mailto - no default"
342     echo " -O : overwrite - re-run in base directory, do not re-create vserver"
343     echo " -B : run build only"
344     echo " -T : run test only"
345     echo " -n dry-run : -n passed to make - vserver gets created though - no mail sent"
346     echo " -v : be verbose"
347     echo " -7 : uses weekday-@FCDISTRO@ as base"
348     echo " -a makevar=value - space in values are not supported"
349     echo " -i ifname - defaults to $DEFAULT_IFNAME - used to determine local IP"
350     exit 1
351 }
352
353 function main () {
354
355     set -e
356
357     # parse arguments
358     MAKEVARS=()
359     DRY_RUN=
360     DO_BUILD=true
361     DO_TEST=true
362     while getopts "f:d:p:b:t:r:s:x:c:w:W:g:u:m:OBTnyv7a:i:" opt ; do
363         case $opt in
364             f) FCDISTRO=$OPTARG ;;
365             d) PLDISTRO=$OPTARG ;;
366             p) PERSONALITY=$OPTARG ;;
367             b) BASE=$OPTARG ;;
368             t) PLDISTROTAGS=$OPTARG ;;
369             r) TAGSRELEASE=$OPTARG ;;
370             s) SVNPATH=$OPTARG ;;
371             c) TESTCONFIG="$TESTCONFIG $OPTARG" ;;
372             w) WEBPATH=$OPTARG ;;
373             W) TESTBUILDURL=$OPTARG ;;
374             y) MKYUMREPO=$OPTARG ;;
375             g) GPGPATH=$OPTARG ;;
376             u) GPGUID=$OPTARG ;;
377             m) MAILTO=$OPTARG ;;
378             O) OVERWRITEMODE=true ;;
379             B) DO_TEST= ;;
380             T) DO_BUILD= ; OVERWRITEMODE=true ;;
381             n) DRY_RUN="-n" ;;
382             v) set -x ;;
383             7) BASE="$(date +%a|tr A-Z a-z)-@FCDISTRO@" ;;
384             a) MAKEVARS=(${MAKEVARS[@]} "$OPTARG") ;;
385             i) IFNAME=$OPTARG ;;
386             h|*) usage ;;
387         esac
388     done
389         
390     # preserve options for passing them again later, together with expanded base
391     declare -a options
392     toshift=$(($OPTIND - 1))
393     arg=1; while [ $arg -le $toshift ] ; do options=(${options[@]} "$1") ; shift; arg=$(($arg+1)) ; done
394
395     MAKETARGETS="$@"
396     
397     # set defaults
398     [ -z "$FCDISTRO" ] && FCDISTRO=$DEFAULT_FCDISTRO
399     [ -z "$PLDISTRO" ] && PLDISTRO=$DEFAULT_PLDISTRO
400     [ -z "$PERSONALITY" ] && PERSONALITY=$DEFAULT_PERSONALITY
401     [ -z "$PLDISTROTAGS" ] && PLDISTROTAGS="${PLDISTRO}-tags.mk"
402     [ -z "$BASE" ] && BASE="$DEFAULT_BASE"
403     [ -z "$WEBPATH" ] && WEBPATH="$DEFAULT_WEBPATH"
404     [ -z "$TESTBUILDURL" ] && TESTBUILDURL="$DEFAULT_TESTBUILDURL"
405     [ -z "$GPGPATH" ] && GPGPATH="$DEFAULT_GPGPATH"
406     [ -z "$GPGUID" ] && GPGUID="$DEFAULT_GPGUID"
407     [ -z "$IFNAME" ] && IFNAME="$DEFAULT_IFNAME"
408     [ -z "$SVNPATH" ] && SVNPATH="$DEFAULT_SVNPATH"
409     [ -z "$TESTCONFIG" ] && TESTCONFIG="$DEFAULT_TESTCONFIG"
410
411     [ -n "$DRY_RUN" ] && MAILTO=""
412         
413     ### set BASE from DISTRO, if unspecified
414     sedargs="-e s,@DATE@,${DATE},g -e s,@FCDISTRO@,${FCDISTRO},g -e s,@PLDISTRO@,${PLDISTRO},g -e s,@PERSONALITY@,${PERSONALITY},g"
415     BASE=$(echo ${BASE} | sed $sedargs)
416     WEBPATH=$(echo ${WEBPATH} | sed $sedargs)
417
418     # where to store the log for web access
419     WEBLOG=${WEBPATH}/${BASE}.log.txt
420     # compute the log URL - inserted in the mail messages for convenience
421     LOG_URL=$(echo ${WEBLOG} | sed -e "s,//,/,g" -e "s,/build/,${TESTBUILDURL},")
422     TESTLOGS_URL=$(echo ${WEBPATH}/${BASE}/testlogs | sed -e "s,//,/,g" -e "s,/build/,${TESTBUILDURL},")
423     
424     if ! in_root_context ; then
425         # in the vserver
426         echo "==================== Within vserver BEG $(date)"
427         build
428         echo "==================== Within vserver END $(date)"
429
430     else
431         trap failure ERR INT
432         # we run in the root context : 
433         # (*) create or check for the vserver to use
434         # (*) copy this command in the vserver
435         # (*) invoke it
436         
437         if [ -n "$OVERWRITEMODE" ] ; then
438             ### Re-use a vserver (finish an unfinished build..)
439             if [ ! -d /vservers/${BASE} ] ; then
440                 echo $COMMAND : cannot find vserver $BASE
441                 exit 1
442             fi
443             # manage LOG - beware it might be a symlink so nuke it first
444             LOG=/vservers/${BASE}.log.txt
445             rm -f $LOG
446             exec > $LOG 2>&1
447             set -x
448             echo "XXXXXXXXXX $COMMAND: using existing vserver $BASE" $(date)
449             show_env
450             # start in case e.g. we just rebooted
451             vserver ${BASE} start || :
452             # update build
453             vserver ${BASE} exec svn update /build
454         else
455             # create vserver: check it does not exist yet
456             i=
457             while [ -d /vservers/${BASE}${i} ] ; do
458                 # we name subsequent builds <base>-n<i> so the logs and builds get sorted properly
459                 [ -z ${i} ] && BASE=${BASE}-n
460                 i=$((${i}+1))
461                 if [ $i -gt 100 ] ; then
462                     echo "$COMMAND: Failed to create build vserver /vservers/${BASE}${i}"
463                     exit 1
464                 fi
465             done
466             BASE=${BASE}${i}
467             # need update
468             # manage LOG - beware it might be a symlink so nuke it first
469             LOG=/vservers/${BASE}.log.txt
470             rm -f $LOG
471             exec > $LOG 2>&1 
472             set -x
473             echo "XXXXXXXXXX $COMMAND: creating vserver $BASE" $(date)
474             show_env
475
476             ### extract the whole build - much simpler
477             tmpdir=/tmp/$COMMAND-$$
478             svn export $SVNPATH $tmpdir
479             # Create vserver
480             cd $tmpdir
481             ./vbuild-init-vserver.sh -f ${FCDISTRO} -d ${PLDISTRO} -p ${PERSONALITY} -i ${IFNAME} ${BASE} 
482             # cleanup
483             cd -
484             rm -rf $tmpdir
485             # Extract build again - in the vserver
486             vserver ${BASE} exec svn checkout ${SVNPATH} /build
487         fi
488         echo "XXXXXXXXXX $COMMAND: preparation of vserver $BASE done" $(date)
489
490         # The log inside the vserver contains everything
491         LOG2=/vservers/${BASE}/log.txt
492         (echo "==================== BEG VSERVER Transcript of vserver creation" ; \
493          cat $LOG ; \
494          echo "==================== END VSERVER Transcript of vserver creation" ; \
495          echo "xxxxxxxxxx Messing with logs, symlinking $LOG2 to $LOG" ) >> $LOG2
496         ### not too nice : nuke the former log, symlink it to the new one
497         rm $LOG; ln -s $LOG2 $LOG
498         LOG=$LOG2
499         # redirect log again
500         exec >> $LOG 2>&1 
501
502         if [ -n "$DO_BUILD" ] ; then 
503
504             cp $COMMANDPATH /vservers/${BASE}/build/
505
506             # invoke this command in the vserver for building (-T)
507             vserver ${BASE} exec chmod +x /build/$COMMAND
508             vserver ${BASE} exec /build/$COMMAND "${options[@]}" -b "${BASE}" $MAKETARGETS
509         fi
510
511         # publish to the web so runtest can find them
512         rm -rf $WEBPATH/$BASE ; mkdir -p $WEBPATH/$BASE/{RPMS,SRPMS}
513         rsync --archive --delete --verbose /vservers/$BASE/build/RPMS/ $WEBPATH/$BASE/RPMS/
514         rsync --archive --delete --verbose /vservers/$BASE/build/SRPMS/ $WEBPATH/$BASE/SRPMS/
515         # publish myplc-release
516         rsync --verbose /vservers/$BASE/build/myplc-release $WEBPATH/$BASE
517
518         # create yum repo and sign packages.
519         if [ -n $MKYUMREPO ] ; then
520             sign_and_index_node_packages
521         fi
522
523         if [ -n "$DO_TEST" ] ; then 
524             runtest
525         fi
526
527         success 
528         
529     fi
530
531 }  
532
533 ##########
534 main "$@"