/[smeserver]/builds_bin/build_all
ViewVC logotype

Contents of /builds_bin/build_all

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.5 - (show annotations) (download)
Fri Jan 27 05:01:29 2006 UTC (18 years, 4 months ago) by gordonr
Branch: MAIN
Changes since 1.4: +3 -3 lines
Add e-smith-* packages

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

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed