projects
/
buildd-scripts.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Ignore emacs backup files
[buildd-scripts.git]
/
bin
/
report_build_result
1
#!/bin/bash
2
3
LOGFILE=/var/log/builder.log
4
STATEDIR=/home/build/state
5
6
HOSTNAME=$1
7
BNUM=$2
8
PKG_VER_ARCH=$3
9
RESULT=$4
10
11
DATE=$(date)
12
echo "$DATE: build result: $HOSTNAME says $BNUM $PKG_VER_ARCH was $RESULT" >> $LOGFILE
13
14
rm $STATEDIR/$BNUM.running
15
16
exit 0
17