/[smeserver]/builds_bin/build_all
ViewVC logotype

Diff of /builds_bin/build_all

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

Revision 1.13 by gordonr, Tue Mar 14 05:06:29 2006 UTC Revision 1.14 by slords, Sat Dec 2 17:19:10 2006 UTC
# Line 5  Line 5 
5  # Normally run as "buildrobot"  # Normally run as "buildrobot"
6  # Requires CVS/SSH access to cvs.sourceforge.net:/cvsroot/smeserver  # Requires CVS/SSH access to cvs.sourceforge.net:/cvsroot/smeserver
7    
8  PATH=/builds/bin:$PATH  umask 002
 export PATH  
9    
10  cd ~/work  PATH=~/bin:$PATH
11    export PATH
12    
13  for package in $(cat modules)  check_package()
14  do  {
15        for NVR in $(rpm -q --qf "%{NAME}-%{VERSION}-%{RELEASE}\n" --specfile $SPEC)
16        do
17            SRPM=/builds/rpms/SRPMS/$NVR.src.rpm
18            if [ -f $SRPM ]
19            then
20                echo "$SRPM already exists"
21                return
22            fi
23        done
24    
25      case $package in      case $package in
26          SMEServer) continue ;;          openssl)
27          builds_bin) continue ;;              build_package "--arch i386,i586,i686"
28          cdrom.image) continue ;;              ;;
29          e-smith-qpsmtpd) continue ;;          kernel-module-*|kmod-*|ipp2p)
30          e-smith-spamassassin) continue ;;              build_package "--arch i586,i686"
31          isolinux) continue ;;              ;;
32            *)
33                build_package
34                ;;
35        esac
36    }
37    
38    build_package()
39    {
40        if mzbuild $1 --specfile $SPEC >> $LOG 2>&1
41        then
42            release_rpms *.rpm
43        else
44            echo "Build of $package failed - check $LOG"
45        fi
46    }
47    
48          grub)   echo "Not building $package"  for package in $(ls /builds/cvsroot/smeserver | grep "^$1.*$")
49    do
50        case $package in
51            CVSROOT|anaconda|builds_bin|cdrom.image|devguide|isolinux)
52                  continue                  continue
53                  ;;                  ;;
   
         *) ;;  
54      esac      esac
55    
56      echo -n "Checking $package "; date      LOG=$HOME/logs/$package.log
57        > $LOG
58    
59      [ -d $package ] || mzget $package      echo -n "Checking $package "; date
60        (echo -n "Checking $package "; date) >> $LOG
61      cd $package      echo ========================================================== >> $LOG
   
     LOG=$package.log  
     mzclean >$LOG 2>&1  
     
     SPEC=$(echo F/*.spec)       # XXX - FIXME - only one SPEC file  
   
     if [ ! -f $SPEC ]  
     then  
         echo "Sorry - can't find $SPEC"  
         continue  
     fi  
62    
63      NVR=$(rpm -q --qf "%{NAME}-%{VERSION}-%{RELEASE}" --specfile $SPEC)      cd ~/work
64        rm -rf ~/work/$package
65        mzget --dir /builds/cvsroot/smeserver $package >> $LOG
66    
67      SRPM=/builds/rpms/SRPMS/$NVR.src.rpm      cd ~/work/$package
68    
69      if [ -f $SRPM ]      SPEC=$(ls F/*.spec 2> /dev/null | tail -1)
70        if [ -z "$SPEC" ]
71      then      then
72          echo "$SRPM already exists"          echo "Not building $package (No SPEC file)"
73          continue          continue
     fi  
   
     if mzbuild >>$LOG 2>&1  
     then  
         :  
74      else      else
75          echo "Build of $package failed - check $LOG"          TAGS=$(cvs status -v $SPEC | awk '/\(revision:/{ print $1 }' | sort -u)
76      fi      fi
77        check_package
78    
79      cd ~/work      for tag in $TAGS
80        do
81            echo >> $LOG
82    
83            echo -n "Checking $package ($tag) "; date
84            (echo -n "Checking $package ($tag) "; date) >> $LOG
85            echo ========================================================== >> $LOG
86            cd ~/work
87            rm -rf ~/work/$package
88            mzget --dir /builds/cvsroot/smeserver --tag $tag $package >> $LOG
89    
90            cd ~/work/$package
91    
92            SPEC=$(ls F/*.spec 2> /dev/null | tail -1)
93            if [ -z "$SPEC" ]
94            then
95                echo "Not building $package (No SPEC file)"
96                continue
97            fi
98            check_package
99        done
100  done  done


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

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