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

# 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'`

run_build_script ()
{
	 distro=$1

	 LOGFILE=/home/pd/logs/${DATE}_${TIME}_${SYSTEM}_${HOSTNAME}_${distro}_${SCRIPT}.txt
	 touch ${LOGFILE} 

	 sh /home/pd/auto-build/${distro}/scripts/auto-build/${distro}-auto-builder.sh >> $LOGFILE 2>&1

	 case $SYSTEM in 
		  mingw*)
				/c/cygwin/bin/sh --login -c \
					 "rsync -a ${LOGFILE} rsync://128.238.56.50/upload/${DATE}/logs/"
				;;
		  *)
				rsync -a ${LOGFILE} rsync://128.238.56.50/upload/${DATE}/logs/
				;;
	 esac

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

run_build_script pd-main
run_build_script pd-extended
#run_build_script pd-devel