remove the -a option, support var=value as part of the make targets
[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     # store tests_svnpath
171     make -C /build $DRY_RUN "${MAKEVARS[@]}" stage1=true tests_svnpath
172     # versions
173     make -C /build $DRY_RUN "${MAKEVARS[@]}" versions
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_node_packages () {
255
256     echo "Signing node packages"
257     
258     need_createrepo=""
259
260     repository=$WEBPATH/$BASE/RPMS/
261     # the rpms that need signing
262     new_rpms=
263     # and the corresponding stamps
264     new_stamps=
265
266     for package in $(find $repository/ -name '*.rpm') ; do
267         stamp=$repository/signed-stamps/$(basename $package).signed
268         # If package is newer than signature stamp
269         if [ $package -nt $stamp ] ; then
270             new_rpms="$new_rpms $package"
271             new_stamps="$new_stamps $stamp"
272         fi
273         # Or than createrepo database
274         [ $package -nt $repository/repodata/repomd.xml ] && need_createrepo=true
275     done
276
277     if [ -n "$new_rpms" ] ; then
278         # Create a stamp once the package gets signed
279         mkdir $repository/signed-stamps 2> /dev/null
280         
281         # Sign RPMS. setsid detaches rpm from the terminal,
282         # allowing the (hopefully blank) GPG password to be
283         # entered from stdin instead of /dev/tty.
284         echo | setsid rpm \
285             --define "_signature gpg" \
286             --define "_gpg_path $GPGPATH" \
287             --define "_gpg_name $GPGUID" \
288             --resign $new_rpms && touch $new_stamps
289     fi
290
291      # Update repository index / yum metadata. 
292     if [ -n "$need_createrepo" ] ; then
293         echo "Indexing node packages after signing"
294         if [ -f $repository/yumgroups.xml ] ; then
295             createrepo --quiet -g yumgroups.xml $repository
296         else
297             createrepo --quiet $repository
298         fi
299     fi
300 }
301
302 function show_env () {
303     set +x
304     echo FCDISTRO=$FCDISTRO
305     echo PLDISTRO=$PLDISTRO
306     echo BASE=$BASE
307     echo SVNPATH=$SVNPATH
308     echo MAKEVARS="${MAKEVARS[@]}"
309     echo DRY_RUN="$DRY_RUN"
310     echo PLDISTROTAGS="$PLDISTROTAGS"
311     echo TAGSRELEASE="$TAGSRELEASE"
312     echo -n "(might be unexpanded)"
313     echo WEBPATH="$WEBPATH"
314     echo TESTBUILDURL="$TESTBUILDURL"
315     if in_root_context ; then
316         echo PLDISTROTAGS="$PLDISTROTAGS"
317     else
318         echo "XXXXXXXXXXXXXXXXXXXX Contents of tags definition file /build/$PLDISTROTAGS"
319         cat /build/$PLDISTROTAGS
320         echo "XXXXXXXXXXXXXXXXXXXX end tags definition"
321     fi
322     set -x
323 }
324
325 function usage () {
326     echo "Usage: $COMMAND [option] [var=value...] make-targets"
327     echo "This is $REVISION"
328     echo "Supported options"
329     echo " -f fcdistro - defaults to $DEFAULT_FCDISTRO"
330     echo " -d pldistro - defaults to $DEFAULT_PLDISTRO"
331     echo " -p personality - defaults to $DEFAULT_PERSONALITY"
332     echo " -b base - defaults to $DEFAULT_BASE"
333     echo "    @NAME@ replaced as appropriate"
334     echo " -t pldistrotags - defaults to \${PLDISTRO}-tags.mk"
335     echo " -r tagsrelease - a release number that refers to PLDISTROTAGS - defaults to HEAD"
336     echo " -s svnpath - where to fetch the build module"
337     echo " -c testconfig - defaults to $DEFAULT_TESTCONFIG"
338     echo " -w webpath - defaults to $DEFAULT_WEBPATH"
339     echo " -W testbuildurl - defaults to $DEFAULT_TESTBUILDURL"
340     echo " -y sign yum repo in webpath"
341     echo " -g path to gpg secring used to sign rpms.  Defaults to $DEFAULT_GPGPATH" 
342     echo " -u gpg email used in secring. Defaults to $DEFAULT_GPGUID"
343     echo " -m mailto - no default"
344     echo " -O : overwrite - re-run in base directory, do not re-create vserver"
345     echo " -B : run build only"
346     echo " -T : run test only"
347     echo " -n dry-run : -n passed to make - vserver gets created though - no mail sent"
348     echo " -v : be verbose"
349     echo " -7 : uses weekday-@FCDISTRO@ as base"
350     echo " -i ifname - defaults to $DEFAULT_IFNAME - used to determine local IP"
351     exit 1
352 }
353
354 function main () {
355
356     set -e
357
358     # parse arguments
359     MAKEVARS=()
360     MAKETARGETS=()
361     DRY_RUN=
362     DO_BUILD=true
363     DO_TEST=true
364     SIGNYUMREPO=""
365     while getopts "f:d:p:b:t:r:s:x:c:w:W:g:u:m:OBTnyv7i:" opt ; do
366         case $opt in
367             f) FCDISTRO=$OPTARG ;;
368             d) PLDISTRO=$OPTARG ;;
369             p) PERSONALITY=$OPTARG ;;
370             b) BASE=$OPTARG ;;
371             t) PLDISTROTAGS=$OPTARG ;;
372             r) TAGSRELEASE=$OPTARG ;;
373             s) SVNPATH=$OPTARG ;;
374             c) TESTCONFIG="$TESTCONFIG $OPTARG" ;;
375             w) WEBPATH=$OPTARG ;;
376             W) TESTBUILDURL=$OPTARG ;;
377             y) SIGNYUMREPO=true ;;
378             g) GPGPATH=$OPTARG ;;
379             u) GPGUID=$OPTARG ;;
380             m) MAILTO=$OPTARG ;;
381             O) OVERWRITEMODE=true ;;
382             B) DO_TEST= ;;
383             T) DO_BUILD= ; OVERWRITEMODE=true ;;
384             n) DRY_RUN="-n" ;;
385             v) set -x ;;
386             7) BASE="$(date +%a|tr A-Z a-z)-@FCDISTRO@" ;;
387             i) IFNAME=$OPTARG ;;
388             h|*) usage ;;
389         esac
390     done
391         
392     # preserve options for passing them again later, together with expanded base
393     declare -a options
394     toshift=$(($OPTIND - 1))
395     arg=1; while [ $arg -le $toshift ] ; do options=(${options[@]} "$1") ; shift; arg=$(($arg+1)) ; done
396
397     # allow var=value stuff; 
398     for target in "$@" ; do
399         # check if contains '='
400         target1=$(echo $target | sed -e s,=,,)
401         if [ "$target" = "$target1" ] ; then
402             MAKETARGETS=(${MAKETARGETS[@]} "$target")
403         else
404             MAKEVARS=(${MAKEVARS[@]} "$target")
405         fi
406     done
407     
408     # set defaults
409     [ -z "$FCDISTRO" ] && FCDISTRO=$DEFAULT_FCDISTRO
410     [ -z "$PLDISTRO" ] && PLDISTRO=$DEFAULT_PLDISTRO
411     [ -z "$PERSONALITY" ] && PERSONALITY=$DEFAULT_PERSONALITY
412     [ -z "$PLDISTROTAGS" ] && PLDISTROTAGS="${PLDISTRO}-tags.mk"
413     [ -z "$BASE" ] && BASE="$DEFAULT_BASE"
414     [ -z "$WEBPATH" ] && WEBPATH="$DEFAULT_WEBPATH"
415     [ -z "$TESTBUILDURL" ] && TESTBUILDURL="$DEFAULT_TESTBUILDURL"
416     [ -z "$GPGPATH" ] && GPGPATH="$DEFAULT_GPGPATH"
417     [ -z "$GPGUID" ] && GPGUID="$DEFAULT_GPGUID"
418     [ -z "$IFNAME" ] && IFNAME="$DEFAULT_IFNAME"
419     [ -z "$SVNPATH" ] && SVNPATH="$DEFAULT_SVNPATH"
420     [ -z "$TESTCONFIG" ] && TESTCONFIG="$DEFAULT_TESTCONFIG"
421
422     [ -n "$DRY_RUN" ] && MAILTO=""
423         
424     ### set BASE from DISTRO, if unspecified
425     sedargs="-e s,@DATE@,${DATE},g -e s,@FCDISTRO@,${FCDISTRO},g -e s,@PLDISTRO@,${PLDISTRO},g -e s,@PERSONALITY@,${PERSONALITY},g"
426     BASE=$(echo ${BASE} | sed $sedargs)
427     WEBPATH=$(echo ${WEBPATH} | sed $sedargs)
428
429     # where to store the log for web access
430     WEBLOG=${WEBPATH}/${BASE}.log.txt
431     # compute the log URL - inserted in the mail messages for convenience
432     LOG_URL=$(echo ${WEBLOG} | sed -e "s,//,/,g" -e "s,/build/,${TESTBUILDURL},")
433     TESTLOGS_URL=$(echo ${WEBPATH}/${BASE}/testlogs | sed -e "s,//,/,g" -e "s,/build/,${TESTBUILDURL},")
434     
435     if ! in_root_context ; then
436         # in the vserver
437         echo "==================== Within vserver BEG $(date)"
438         build
439         echo "==================== Within vserver END $(date)"
440
441     else
442         trap failure ERR INT
443         # we run in the root context : 
444         # (*) create or check for the vserver to use
445         # (*) copy this command in the vserver
446         # (*) invoke it
447         
448         if [ -n "$OVERWRITEMODE" ] ; then
449             ### Re-use a vserver (finish an unfinished build..)
450             if [ ! -d /vservers/${BASE} ] ; then
451                 echo $COMMAND : cannot find vserver $BASE
452                 exit 1
453             fi
454             # manage LOG - beware it might be a symlink so nuke it first
455             LOG=/vservers/${BASE}.log.txt
456             rm -f $LOG
457             exec > $LOG 2>&1
458             set -x
459             echo "XXXXXXXXXX $COMMAND: using existing vserver $BASE" $(date)
460             show_env
461             # start in case e.g. we just rebooted
462             vserver ${BASE} start || :
463             # update build
464             vserver ${BASE} exec svn update /build
465         else
466             # create vserver: check it does not exist yet
467             i=
468             while [ -d /vservers/${BASE}${i} ] ; do
469                 # we name subsequent builds <base>-n<i> so the logs and builds get sorted properly
470                 [ -z ${i} ] && BASE=${BASE}-n
471                 i=$((${i}+1))
472                 if [ $i -gt 100 ] ; then
473                     echo "$COMMAND: Failed to create build vserver /vservers/${BASE}${i}"
474                     exit 1
475                 fi
476             done
477             BASE=${BASE}${i}
478             # need update
479             # manage LOG - beware it might be a symlink so nuke it first
480             LOG=/vservers/${BASE}.log.txt
481             rm -f $LOG
482             exec > $LOG 2>&1 
483             set -x
484             echo "XXXXXXXXXX $COMMAND: creating vserver $BASE" $(date)
485             show_env
486
487             ### extract the whole build - much simpler
488             tmpdir=/tmp/$COMMAND-$$
489             svn export $SVNPATH $tmpdir
490             # Create vserver
491             cd $tmpdir
492             ./vbuild-init-vserver.sh -f ${FCDISTRO} -d ${PLDISTRO} -p ${PERSONALITY} -i ${IFNAME} ${BASE} 
493             # cleanup
494             cd -
495             rm -rf $tmpdir
496             # Extract build again - in the vserver
497             vserver ${BASE} exec svn checkout ${SVNPATH} /build
498         fi
499         echo "XXXXXXXXXX $COMMAND: preparation of vserver $BASE done" $(date)
500
501         # The log inside the vserver contains everything
502         LOG2=/vservers/${BASE}/log.txt
503         (echo "==================== BEG VSERVER Transcript of vserver creation" ; \
504          cat $LOG ; \
505          echo "==================== END VSERVER Transcript of vserver creation" ; \
506          echo "xxxxxxxxxx Messing with logs, symlinking $LOG2 to $LOG" ) >> $LOG2
507         ### not too nice : nuke the former log, symlink it to the new one
508         rm $LOG; ln -s $LOG2 $LOG
509         LOG=$LOG2
510         # redirect log again
511         exec >> $LOG 2>&1 
512
513         if [ -n "$DO_BUILD" ] ; then 
514
515             cp $COMMANDPATH /vservers/${BASE}/build/
516
517             # invoke this command in the vserver for building (-T)
518             vserver ${BASE} exec chmod +x /build/$COMMAND
519             vserver ${BASE} exec /build/$COMMAND "${options[@]}" -b "${BASE}" "${MAKEVARS[@]}" "${MAKETARGETS[@]}"
520         fi
521
522         # publish to the web so runtest can find them
523         rm -rf $WEBPATH/$BASE ; mkdir -p $WEBPATH/$BASE/{RPMS,SRPMS}
524         rsync --archive --delete --verbose /vservers/$BASE/build/RPMS/ $WEBPATH/$BASE/RPMS/
525         rsync --archive --delete --verbose /vservers/$BASE/build/SRPMS/ $WEBPATH/$BASE/SRPMS/
526         # publish myplc-release
527         rsync --verbose /vservers/$BASE/build/myplc-release $WEBPATH/$BASE
528
529         # create yum repo and sign packages.
530         if [ -n "$SIGNYUMREPO" ] ; then
531             sign_node_packages
532         fi
533
534         if [ -n "$DO_TEST" ] ; then 
535             runtest
536         fi
537
538         success 
539         
540     fi
541
542 }  
543
544 ##########
545 main "$@"