1 |
#!/bin/bash |
2 |
# Build all locally maintained packages from CVS |
3 |
# Check whether anything is new and let us know if there is |
4 |
|
5 |
# Normally run as "buildrobot" |
6 |
# Requires CVS/SSH access to cvs.sourceforge.net:/cvsroot/smeserver |
7 |
|
8 |
PATH=/builds/bin:$PATH |
9 |
export PATH |
10 |
|
11 |
cd ~/work |
12 |
|
13 |
for package in $(cat modules) |
14 |
do |
15 |
case $package in |
16 |
SMEServer) continue ;; |
17 |
|
18 |
# e-smith*) ;; |
19 |
|
20 |
smeserver*) ;; |
21 |
|
22 |
|
23 |
*) echo -n "Skipping $package "; date |
24 |
continue |
25 |
;; |
26 |
esac |
27 |
|
28 |
echo -n "Building $package "; date |
29 |
|
30 |
[ -d $package ] || mzget $package |
31 |
|
32 |
( |
33 |
cd $package |
34 |
|
35 |
LOG=$package.log |
36 |
mzclean >>$LOG 2>&1 |
37 |
|
38 |
if mzbuild >>$LOG 2>&1 |
39 |
then |
40 |
release_rpms *.rpm |
41 |
else |
42 |
echo "Build of $package failed - check $LOG" |
43 |
fi |
44 |
) |
45 |
|
46 |
done |