aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/run-automated-builder
blob: 11f8fc3a9565d037f2761ec47d4daa7df7e4a7e0 (plain)
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
#!/bin/sh

# go to a directory that we know exists everywhere, including chroots ;)
cd /

# if on Mac OS X, include Fink for all of the libs and tools
if [ -e /sw/bin/init.sh ]; then
    . /sw/bin/init.sh
fi

# the source dir where this script is
SCRIPT_DIR=$(echo $0 | sed 's|\(.*\)/.*$|\1|')
. $SCRIPT_DIR/auto-build-common

# the name of this script
SCRIPT=$(echo $0| sed 's|.*/\(.*\)|\1|g')

mailbody_on_failure () {
 ## this is a somewhat simplistic expression to detect error-lines
 echo "last 20 errors ----------------------------------------"
 cat ${LOGFILE} | grep -i -e "error: " -e "cannot find" | tail -20
 echo "last 15 lines ----------------------------------------"
 tail -15 ${LOGFILE}
 echo ""
 echo "the full logfile - if it has been succesfully uploaded - can be viewed at:"
 echo "http://autobuild.puredata.info/auto-build/${DATE}/logs/${LOGFILE##*/}"
}

run_build_script ()
{
	 distro=$1
	 chroot=$2

	 BUILDSCRIPT="${HOME}/auto-build/${distro}/scripts/auto-build/${distro}-auto-builder.sh"
         ## LATER: make the uploaded ${LOGFILE} (name) be consistent with the uploaded package-file (name)
	 LOGFILE="${HOME}/logs/${DATE}_${TIME}_${SYSTEM}_${HOSTNAME}_${distro}.txt"
	 touch "${LOGFILE}" 

	 if [ -d /var/chroot/$chroot ]; then
		 echo "----------------------------------------" >> "$LOGFILE" 2>&1
		 echo "Building in dchroot $chroot" >> "$LOGFILE" 2>&1
		 echo "----------------------------------------" >> "$LOGFILE" 2>&1
		 dchroot -c $chroot -d "$BUILDSCRIPT" >> "$LOGFILE" 2>&1
	 else
		 echo "----------------------------------------" >> "$LOGFILE" 2>&1
		 echo "Building on native system" >> "$LOGFILE" 2>&1
		 echo "----------------------------------------" >> "$LOGFILE" 2>&1
		 sh "$BUILDSCRIPT" >> "$LOGFILE" 2>&1
	 fi
	 rsync_file $LOGFILE  ${DATE}/logs/`basename $LOGFILE`

# send status report if something failed
	 completion_test=$(tail -1 ${LOGFILE})
	 if [ "x${completion_test}" != "xSUCCESS" ]; then
		if [ "x${RECIPIENT}" != "x" ]; then
		  SUBJECT="autobuild: $distro $HOSTNAME $DATE $TIME"
		  mailbody_on_failure | $MAIL_COMMAND -s "${SUBJECT}" ${RECIPIENT}
		fi
	 fi
}

for distrodir in ${HOME}/auto-build/*; do 
	 distro=$(echo $distrodir | sed 's|.*/\(.*\)|\1|')
	 if [ -e $distrodir/scripts/auto-build/${distro}-auto-builder.sh ]; then
		 run_build_script $distro IGNORE_CHROOT_USE_SYSTEM
		 if [ -e /var/chroot ]; then
			 for chrootdir in /var/chroot/*; do 
				 chroot=$(echo $chrootdir | sed 's|.*/\(.*\)|\1|')
				 HOSTNAME=`cat /var/chroot/$chroot/etc/hostname`
				 run_build_script $distro $chroot
			 done
		 fi
	 fi
done

# since the above test can cause this script to exit with an error, force it
# to be happy to prevent getting automated error emails to root
true