| 1 | #!/usr/bin/perl -w | 
|---|
| 2 | # automatisches buildskript fuer smartclient | 
|---|
| 3 | # liest die konfiguration aus der mit -b übergebenen Datei | 
|---|
| 4 | # $Id: buildall.pl,v 1.9 2002/09/17 10:03:24 pstorz Exp $ | 
|---|
| 5 | # Philipp Storz, SuSE Linux AG | 
|---|
| 6 | # pstorz@suse.de | 
|---|
| 7 | use Getopt::Std; | 
|---|
| 8 |  | 
|---|
| 9 |  | 
|---|
| 10 | format TABELLE = | 
|---|
| 11 | @<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< | 
|---|
| 12 | $wert1, $wert2, $wert3 | 
|---|
| 13 | . | 
|---|
| 14 |  | 
|---|
| 15 |  | 
|---|
| 16 | # Programmoptionen: -b (buildlist) | 
|---|
| 17 |  | 
|---|
| 18 | my $smartclient_root="../../";   # Pfad, zu dem die Pfade in buildlist stehen | 
|---|
| 19 | my $build = "build.sh"; | 
|---|
| 20 | our ($opt_b); | 
|---|
| 21 | my @ArrayofBuilds; | 
|---|
| 22 | getopts('b:'); | 
|---|
| 23 |  | 
|---|
| 24 |  | 
|---|
| 25 | if (!$opt_b) | 
|---|
| 26 | { | 
|---|
| 27 | $opt_b = "buildlist"; | 
|---|
| 28 | print "using default buildlist: buildlist\n\n"; | 
|---|
| 29 | print "other buildlist can be specified with -b buildlist\n\n"; | 
|---|
| 30 | }; | 
|---|
| 31 |  | 
|---|
| 32 | (open(BUILDLIST,$opt_b)) || die "Die Buildlist $opt_b  konnte nicht gefunden werden"; | 
|---|
| 33 |  | 
|---|
| 34 |  | 
|---|
| 35 | while (<BUILDLIST>) #Buildlist parsen | 
|---|
| 36 | { | 
|---|
| 37 | next if (/^\#.*$/); | 
|---|
| 38 | #    if (/([\w\/]+)\s*:([\/\w\-\+\.]+)\s+:((\s*\-\-\w*)*)$/) | 
|---|
| 39 | if (/(\S+)\s*:(\S+)\s*:(\S+)\s*$/) | 
|---|
| 40 | { | 
|---|
| 41 | ($dir, $arch, $opt) = ($1, $2, $3); | 
|---|
| 42 | chomp ($arch); | 
|---|
| 43 | @build=($dir, $arch, $opt); | 
|---|
| 44 | push @ArrayofBuilds, [@build]; | 
|---|
| 45 | } | 
|---|
| 46 | } | 
|---|
| 47 |  | 
|---|
| 48 |  | 
|---|
| 49 |  | 
|---|
| 50 | print "What will be done:\n\n"; | 
|---|
| 51 | ($wert1,$wert2,$wert3)= ("Path","Distribuition","Buildoptions"); | 
|---|
| 52 | $~="TABELLE"; | 
|---|
| 53 | write; | 
|---|
| 54 | print "\n"; | 
|---|
| 55 | for $i (0 .. $#ArrayofBuilds) | 
|---|
| 56 | { | 
|---|
| 57 | ($wert1,$wert2,$wert3)= ($ArrayofBuilds[$i][0],$ArrayofBuilds[$i][1],$ArrayofBuilds[$i][2]); | 
|---|
| 58 | $~="TABELLE"; | 
|---|
| 59 | write; | 
|---|
| 60 | } | 
|---|
| 61 | print "\n\n\n ATTENTION: the srpms from the directory external/SuSE  must be built before!\n"; | 
|---|
| 62 | print "to build srpms, goto dir external/SuSE, execute build_srpms.sh script!\n\n\n"; | 
|---|
| 63 | print 'Are the srpms built and all options OK? (y/n)'; | 
|---|
| 64 |  | 
|---|
| 65 | $answer =<STDIN>; | 
|---|
| 66 | chomp ($answer); | 
|---|
| 67 | if ($answer ne "y") {die("canceled")}; | 
|---|
| 68 |  | 
|---|
| 69 | for $i (0 .. $#ArrayofBuilds) | 
|---|
| 70 | { | 
|---|
| 71 | print("$ArrayofBuilds[$i][0]\t\t$ArrayofBuilds[$i][1]\t\t$ArrayofBuilds[$i][2]\n"); | 
|---|
| 72 | $mypath = $smartclient_root.$ArrayofBuilds[$i][0]; | 
|---|
| 73 |  | 
|---|
| 74 | if ($ArrayofBuilds[$i][2]) | 
|---|
| 75 | { | 
|---|
| 76 | $ENV{'BUILD_MODE'}=$ArrayofBuilds[$i][2]; | 
|---|
| 77 | } | 
|---|
| 78 | else | 
|---|
| 79 | { | 
|---|
| 80 | $ENV{'BUILD_MODE'}="--clean"; | 
|---|
| 81 | } | 
|---|
| 82 | $ENV{'BUILD_DIST'}=$ArrayofBuilds[$i][1]; | 
|---|
| 83 |  | 
|---|
| 84 |  | 
|---|
| 85 | #  system "./test.sh"; | 
|---|
| 86 | $_=$ArrayofBuilds[$i][0]; | 
|---|
| 87 | print "$_ \n"; | 
|---|
| 88 | tr/\//\_/; | 
|---|
| 89 | $logfilename = $_.".$ArrayofBuilds[$i][1].log"; | 
|---|
| 90 | print "++++++++++++++++++++++++++++++++++++++++++\n"; | 
|---|
| 91 | print "executing command: cd $mypath; $build 2>&1 > $logfilename\n"; | 
|---|
| 92 | print "BUILD_DIST ist $ENV{'BUILD_DIST'}\n"; | 
|---|
| 93 | print "BUILD_MODE ist $ENV{'BUILD_MODE'}\n"; | 
|---|
| 94 |  | 
|---|
| 95 | print "writing logfile to $logfilename \n\n\n"; | 
|---|
| 96 | print "you can watch building with following command: \n"; | 
|---|
| 97 | $workdir=`pwd`; | 
|---|
| 98 | chomp $workdir; | 
|---|
| 99 | print "less +F $workdir/$mypath/$logfilename\n"; | 
|---|
| 100 |  | 
|---|
| 101 |  | 
|---|
| 102 | if ($opt_x) | 
|---|
| 103 | { | 
|---|
| 104 | system "xterm -T \"build log for PACKET: $mypath    ARCH:$ArrayofBuilds[$i][1] \" -e less +F $workdir/$mypath/$logfilename &"; | 
|---|
| 105 | print "++++++++++++++++++++++++++++++++++++++++++\n"; | 
|---|
| 106 | $retval = system "cd $mypath; $build >$logfilename 2>&1;"; | 
|---|
| 107 | } | 
|---|
| 108 | else | 
|---|
| 109 | { | 
|---|
| 110 | $retval = system "cd $mypath; $build |tee $logfilename"; | 
|---|
| 111 | } | 
|---|
| 112 |  | 
|---|
| 113 |  | 
|---|
| 114 |  | 
|---|
| 115 | #  system "xterm -T \"build log for PACKET: $mypath    ARCH:$ArrayofBuilds[$i][1] \" -e less +F $workdir/$mypath/$logfilename &"; | 
|---|
| 116 | #  print "++++++++++++++++++++++++++++++++++++++++++\n"; | 
|---|
| 117 | #  $retval = system "cd $mypath; $build >$logfilename 2>&1;"; | 
|---|
| 118 | # $retval = system "./exit.sh 2>&1 > $logfilename;"; | 
|---|
| 119 |  | 
|---|
| 120 |  | 
|---|
| 121 | if ($retval == 0) | 
|---|
| 122 | { | 
|---|
| 123 | $ArrayofBuilds[$i][3]= "SUCESS $ArrayofBuilds[$i][0] :"; | 
|---|
| 124 | print"******                                                      ******\n"; | 
|---|
| 125 | print"******   building of $ArrayofBuilds[$i][0] SUCCESSFULL:     \n" ; | 
|---|
| 126 | print"******                                                      ******\n"; | 
|---|
| 127 | } | 
|---|
| 128 | else | 
|---|
| 129 | { | 
|---|
| 130 | $ArrayofBuilds[$i][3]="ERROR  $ArrayofBuilds[$i][0] UNSUCCESSFULL:\n"; | 
|---|
| 131 | print"******                                                      ******\n"; | 
|---|
| 132 | print"\n\n\nERROR: building of $ArrayofBuilds[$i][0] UNSUCCESSFULL \n"; | 
|---|
| 133 | print"******                                                      ******\n"; | 
|---|
| 134 | } | 
|---|
| 135 |  | 
|---|
| 136 | } | 
|---|
| 137 |  | 
|---|
| 138 | print "Building results:\n"; | 
|---|
| 139 |  | 
|---|
| 140 |  | 
|---|
| 141 |  | 
|---|
| 142 | ($wert1,$wert2,$wert3)= ("Path","Distribuition","Result"); | 
|---|
| 143 | $~="TABELLE"; | 
|---|
| 144 | write; | 
|---|
| 145 | print "\n"; | 
|---|
| 146 |  | 
|---|
| 147 | for $i (0 .. $#ArrayofBuilds) | 
|---|
| 148 | { | 
|---|
| 149 | ($wert1,$wert2,$wert3)= ($ArrayofBuilds[$i][0],$ArrayofBuilds[$i][1],$ArrayofBuilds[$i][3]); | 
|---|
| 150 | $~="TABELLE"; | 
|---|
| 151 | write; | 
|---|
| 152 | #    print("$ArrayofBuilds[$i][0]:Result: $ArrayofBuilds[$i][3]"); | 
|---|
| 153 | } | 
|---|
| 154 |  | 
|---|
| 155 |  | 
|---|
| 156 |  | 
|---|
| 157 |  | 
|---|
| 158 | print "buildall.pl terminated\n"; | 
|---|
| 159 |  | 
|---|
| 160 |  | 
|---|
| 161 |  | 
|---|
| 162 |  | 
|---|