#!perl require 5.000; use Sys::Hostname; use POSIX "sys_wait_h"; use Cwd; $Version = '$Revision: 1.18 $'; sub InitVars { # PLEASE FILL THIS IN WITH YOUR PROPER EMAIL ADDRESS $BuildAdministrator = "$ENV{'USER'}\@$ENV{'HOST'}"; # Default values of cmdline opts $BuildDepend = 1; # Depend or Clobber $ReportStatus = 1; # Send results to server, or not $BuildOnce = 0; # Build once, don't send results to server $BuildClassic = 0; # Build classic source $RunTest = 1; # Run the smoke test on successful build, or not $UseTimeStamp = 0; # Use the CVS 'pull-by-timestamp' option, or not # Relative path to binary $BinaryName{'x'} = 'mozilla-export'; $BinaryName{'qt'} = 'qtmozilla-export'; $BinaryName{'gnome'} = 'gnuzilla-export'; $BinaryName{'apprunner'} = '/dist/bin/apprunner'; # Set these to what makes sense for your system $cpus = 1; $Make = 'gmake'; # Must be GNU make $MakeOverrides = ''; $mail = '/bin/mail'; $CVS = 'cvs -q'; $CVSCO = 'checkout -P'; # Set these proper values for your tinderbox server $Tinderbox_server = 'tinderbox-daemon\@cvs-mirror.mozilla.org'; # These shouldn't really need to be changed $BuildSleep = 10; # Minimum wait period from start of build to start # of next build in minutes $BuildTree = 'MozillaTest'; # until you get the script working. # when it works, change to the tree you're # actually building $BuildName = ''; $BuildTag = ''; $BuildObjName = ''; $BuildConfigDir = 'mozilla/config'; $BuildStart = ''; $TopLevel = '.'; $Topsrcdir = 'mozilla'; $ClobberStr = 'realclean'; $ConfigureEnvArgs = ''; $ConfigureArgs = '--with-nspr=/builds/tinderbox/SeaMonkey/nspr --cache-file=/dev/null '; $ConfigGuess = './build/autoconf/config.guess'; $Logfile = '${BuildDir}.log'; $NSPRArgs = 'DIST=/builds/tinderbox/SeaMonkey/nspr MOZILLA_CLIENT=1 NSDISTMODE=copy NO_MDUPDATE=1 '; $Compiler = 'gcc'; $ShellOverride = ''; # Only used if the default shell is too stupid } sub ConditionalArgs { if ( $BuildClassic ) { $FE = 'x'; $ConfigureArgs .= "--enable-fe=$FE "; $BuildModule = 'Raptor'; $BuildTag = '' if ( $BuildTag eq '' ); $TopLevel = "mozilla-classic"; } else { $FE = 'apprunner'; $BuildModule = 'SeaMonkeyAll'; } $CVSCO .= " -r $BuildTag" if ( $BuildTag ne '' ); } sub SetupEnv { umask(0); $ENV{"CVSROOT"} = ':pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot'; $ENV{"LD_LIBRARY_PATH"} = '/builds/tinderbox/SeaMonkey/nspr/lib:/builds/tinderbox/SeaMonkey/' . $DirName . '/mozilla/' . $ObjDir . '/dist/bin:/usr/lib/png:/usr/local/lib'; $ENV{"DISPLAY"} = 'crucible.mcom.com:0.0'; } sub SetupPath { my($Path, $comptmp); $comptmp = ''; $Path = $ENV{PATH}; print "Path before: $Path\n"; if ( $OS eq 'AIX' ) { $ENV{'PATH'} = '/builds/local/bin:' . $ENV{'PATH'} . ':/usr/lpp/xlC/bin'; $ConfigureArgs .= '--x-includes=/usr/include/X11 --x-libraries=/usr/lib --disable-shared'; $ConfigureEnvArgs = 'CC=xlC_r CXX=xlC_r'; $Compiler = 'xlC_r'; $NSPRArgs .= 'NS_USE_NATIVE=1 USE_PTHREADS=1'; } if ( $OS eq 'BSD_OS' ) { $ENV{'PATH'} = '/usr/contrib/bin:/bin:/usr/bin:' . $ENV{'PATH'}; $ConfigureArgs .= '--disable-shared'; $ConfigureEnvArgs = 'CC=shlicc2 CXX=shlicc2'; $Compiler = 'shlicc2'; $mail = '/usr/ucb/mail'; $MakeOverrides = 'CPP_PROG_LINK=0 CCF=shlicc2'; # because ld dies if it encounters -include $NSPRArgs .= 'NS_USE_GCC=1 NS_USE_NATIVE='; } if ( $OS eq 'FreeBSD' ) { $ENV{'PATH'} = '/bin:/usr/bin:' . $ENV{'PATH'}; if ( $ENV{'HOST'} eq 'angelus.mcom.com' ) { $ConfigureEnvArgs = 'CC=egcc CXX=eg++'; $Compiler = 'egcc'; } $mail = '/usr/bin/mail'; } if ( $OS eq 'HP-UX' ) { $ENV{'PATH'} = '/opt/ansic/bin:/opt/aCC/bin:/builds/local/bin:' . $ENV{'PATH'}; $ENV{'LPATH'} = '/usr/lib:' . $ENV{'LD_LIBRARY_PATH'} . ':/builds/local/lib'; $ENV{'SHLIB_PATH'} = $ENV{'LPATH'}; $ConfigureArgs .= '--disable-gtktest --x-includes=/usr/include/X11 --x-libraries=/usr/lib'; $ConfigureEnvArgs = 'CC="cc -Ae" CXX="aCC -ext"'; $Compiler = 'cc/aCC'; # Use USE_PTHREADS=1 instead of CLASSIC_NSPR if you've got DCE installed. $NSPRArgs .= 'NS_USE_NATIVE=1 CLASSIC_NSPR=1'; } if ( $OS eq 'IRIX' ) { $ENV{'PATH'} = '/opt/bin:' . $ENV{'PATH'}; $ENV{'LD_LIBRARY_PATH'} .= ':/opt/lib'; $ENV{'LD_LIBRARYN32_PATH'} = $ENV{'LD_LIBRARY_PATH'}; $ConfigureEnvArgs = 'CC=cc CXX=CC CFLAGS="-n32 -O" CXXFLAGS="-n32 -O"'; $Compiler = 'cc/CC'; $NSPRArgs .= 'NS_USE_NATIVE=1 USE_PTHREADS=1'; } if ( $OS eq 'NetBSD' ) { $ENV{'PATH'} = '/bin:/usr/bin:' . $ENV{'PATH'}; $ENV{'LD_LIBRARY_PATH'} .= ':/usr/X11R6/lib'; $ConfigureEnvArgs = 'CC=egcc CXX=eg++'; $Compiler = 'egcc'; $mail = '/usr/bin/mail'; } if ( $OS eq 'OSF1' ) { $ENV{'PATH'} = '/usr/gnu/bin:' . $ENV{'PATH'}; $ENV{'LD_LIBRARY_PATH'} .= ':/usr/gnu/lib'; $ConfigureArgs .= '--with-pthreads'; $ConfigureEnvArgs = 'CC="cc -readonly_strings" CXX="cxx"'; $Compiler = 'cc/cxx'; $MakeOverrides = 'SHELL=/usr/bin/ksh'; $NSPRArgs .= 'NS_USE_NATIVE=1 USE_PTHREADS=1'; $ShellOverride = '/usr/bin/ksh'; } if ( $OS eq 'QNX' ) { $ENV{'PATH'} = '/usr/local/bin:' . $ENV{'PATH'}; $ENV{'LD_LIBRARY_PATH'} .= ':/usr/X11/lib'; $ConfigureArgs .= '--disable-shared --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib'; $ConfigureEnvArgs = 'CC="cc -DQNX" CXX="cc -DQNX"'; $Compiler = 'cc'; $mail = '/usr/bin/sendmail'; } if ( $OS eq 'SunOS' ) { if ( $OSVerMajor eq '4' ) { $ENV{'PATH'} = '/usr/gnu/bin:/usr/local/sun4/bin:/usr/bin:' . $ENV{'PATH'}; $ENV{'LD_LIBRARY_PATH'} = '/home/motif/usr/lib:' . $ENV{'LD_LIBRARY_PATH'}; $ConfigureArgs .= '--x-includes=/home/motif/usr/include/X11 --x-libraries=/home/motif/usr/lib'; $ConfigureEnvArgs = 'CC="egcc -DSUNOS4" CXX="eg++ -DSUNOS4"'; $Compiler = 'egcc'; } else { $ENV{'PATH'} = '/usr/ccs/bin:' . $ENV{'PATH'}; $ConfigureArgs .= '--with-pthreads'; } if ( $CPU eq 'i86pc' ) { $ENV{'PATH'} = '/opt/gnu/bin:' . $ENV{'PATH'}; $ENV{'LD_LIBRARY_PATH'} .= ':/opt/gnu/lib'; $ConfigureEnvArgs = 'CC=egcc CXX=eg++'; $Compiler = 'egcc'; # This may just be an NSPR bug, but if USE_PTHREADS is defined, then # _PR_HAVE_ATOMIC_CAS gets defined (erroneously?) and libnspr21 doesn't work. $NSPRArgs .= 'CLASSIC_NSPR=1 NS_USE_GCC=1 NS_USE_NATIVE='; } else { # This is utterly lame.... if ( $ENV{'HOST'} eq 'fugu' ) { $ENV{'PATH'} = '/tools/ns/workshop/bin:/usrlocal/bin:' . $ENV{'PATH'}; $ENV{'LD_LIBRARY_PATH'} = '/tools/ns/workshop/lib:/usrlocal/lib:' . $ENV{'LD_LIBRARY_PATH'}; $ConfigureEnvArgs = 'CC=cc CXX=CC'; $comptmp = `cc -V 2>&1 | head -1`; chop($comptmp); $Compiler = "cc/CC \($comptmp\)"; $NSPRArgs .= 'NS_USE_NATIVE=1'; } else { $NSPRArgs .= 'NS_USE_GCC=1 NS_USE_NATIVE='; } if ( $OSVerMajor eq '5' ) { $NSPRArgs .= ' USE_PTHREADS=1'; } } } $Path = $ENV{PATH}; print "Path After: $Path\n"; } ########################################################################## # NO USER CONFIGURABLE PIECES BEYOND THIS POINT # ########################################################################## sub GetSystemInfo { $OS = `uname -s`; $OSVer = `uname -r`; $CPU = `uname -m`; $BuildName = ""; my($host) = ""; my($myhost) = hostname; chop($OS, $OSVer, $CPU); chomp($myhost); ($host, $junk) = split(/\./, $myhost); if ( $OS eq 'AIX' ) { my($osAltVer) = `uname -v`; chop($osAltVer); $OSVer = $osAltVer . "." . $OSVer; } if ( $OS eq 'BSD/OS' ) { $OS = 'BSD_OS'; } if ( $OS eq 'IRIX64' ) { $OS = 'IRIX'; } if ( $OS eq 'QNX' ) { $OSVer = `uname -v`; chop($OSVer); $OSVer =~ s/^([0-9])([0-9]*)$/$1.$2/; } if ( $OS eq 'SCO_SV' ) { $OS = 'SCOOS'; $OSVer = '5.0'; } if ( "$host" ne "" ) { $BuildName = $host . ' ' . $OS . ' ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber'); } $DirName = $OS . '_' . $OSVer . '_' . ($BuildDepend?'depend':'clobber'); # # Defining ObjDir really ought to be done by first checking out # mozilla/build/autoconf/config.guess, and then using it to do # the definition once. # if ( $OS eq 'AIX' ) { # Assumes 4.2.1 for now. $ObjDir = 'obj-powerpc-ibm-aix4.2.1.0'; } if ( $OS eq 'BSD_OS' ) { $ObjDir = 'obj-' . $CPU . '-pc-bsdi' . $OSVer; $BuildName = $host . ' BSD/OS ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber'); } if ( $OS eq 'FreeBSD' ) { $ObjDir = 'obj-' . $CPU . '-unknown-freebsd' . $OSVer; $ObjDir =~ s/(bsd[0-9]\.[0-9])(-[A-Za-z0-9]*)$/$1/o; $BuildName = $host . ' ' . $OS . '/' . $CPU . ' ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber'); } if ( $OS eq 'HP-UX' ) { $ObjDir = 'obj-hppa1.1-hp-hpux' . $OSVer; $ObjDir =~ s/hpux[AB]\./hpux/o; } if ( $OS eq 'IRIX' ) { $ObjDir = 'obj-mips-sgi-irix' . $OSVer; } if ( $OS eq 'Linux' ) { if ( $CPU eq 'alpha' || $CPU eq 'sparc' ) { $ObjDir = 'obj-' . $CPU . '-unknown-linux-gnu'; $BuildName = $host . ' ' . $OS . '/' . $CPU . ' ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber'); } elsif ( $CPU eq 'armv4l' || $CPU eq 'sa110' ) { $ObjDir = 'obj-arm-unknown-linux-gnu'; $BuildName = $host . ' ' . $OS . '/arm ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber'); } elsif ( $CPU eq 'ppc' ) { $ObjDir = 'obj-powerpc-unknown-linux-gnu'; $BuildName = $host . ' ' . $OS . '/' . $CPU . ' ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber'); } else { $ObjDir = 'obj-' . $CPU . '-pc-linux-gnu'; $BuildName = $host . ' ' . $OS . '/i386 ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber'); # What's the right way to test for this? if ( $host eq 'truth' ) { $ObjDir .= 'libc1'; } } } if ( $OS eq 'NetBSD' ) { $ObjDir = 'obj-' . $CPU . '-unknown-netbsd' . $OSVer; $BuildName = $host . ' ' . $OS . '/' . $CPU . ' ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber'); } if ( $OS eq 'OSF1' ) { # Assumes 4.0D for now. $ObjDir = 'obj-alpha-dec-osf4.0d'; } if ( $OS eq 'QNX' ) { $ObjDir = 'obj-i386-pc-qnx4'; } if ( $OS eq 'SunOS' ) { if ( $CPU eq 'i86pc' ) { $ObjDir = 'obj-i386-pc-solaris' . $OSVer; $BuildName = $host . ' ' . $OS . '/i386 ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber'); } else { $ObjDir = 'obj-sparc-sun-'; $OSVerMajor = substr($OSVer, 0, 1); if ( $OSVerMajor eq '4' ) { $ObjDir .= 'sunos'; } else { $ObjDir .= 'solaris'; $BuildName = $host . ' ' . $OS . '/sparc ' . $OSVer . ' ' . ($BuildDepend?'Depend':'Clobber'); } $ObjDir .= $OSVer; } $ObjDir =~ s/s5\./s2./o; } if ( $BuildClassic ) { $logfile = "${DirName}-classic.log"; } else { $logfile = "${DirName}.log"; } } sub BuildIt { my($fe, @felist, $EarlyExit, $LastTime, $SaveCVSCO, $StartTimeStr, $comptmp, $jflag); $comptmp = ''; $jflag = ''; mkdir("$DirName", 0777); chdir("$DirName") || die "Couldn't enter $DirName"; $StartDir = getcwd(); $LastTime = 0; $EarlyExit = 0; $SaveCVSCO = $CVSCO; # With only one it makes no sense to use this. $jflag = "-j $cpus" if ( $cpus > 1 ); print "Starting dir is : $StartDir\n"; while ( ! $EarlyExit ) { chdir("$StartDir"); if ( time - $LastTime < (60 * $BuildSleep) ) { $SleepTime = (60 * $BuildSleep) - (time - $LastTime); print "\n\nSleeping $SleepTime seconds ...\n"; sleep($SleepTime); } $LastTime = time; $CVSCO = $SaveCVSCO if ( $UseTimeStamp ); $StartTime = time - 60 * 10; $StartTimeStr = &CVSTime($StartTime); &StartBuild if ( $ReportStatus ); $CurrentDir = getcwd(); if ( $CurrentDir ne $StartDir ) { print "startdir: $StartDir, curdir $CurrentDir\n"; die "curdir != startdir"; } $BuildDir = $CurrentDir; unlink( "$logfile" ); print "opening $logfile\n"; open( LOG, ">$logfile" ) || print "can't open $?\n"; print LOG "current dir is -- " . $ENV{'HOST'} . ":$CurrentDir\n"; print LOG "Build Administrator is $BuildAdministrator\n"; &PrintEnv; if ( $Compiler ne '' ) { print LOG "===============================\n"; if ( $Compiler eq 'gcc' || $Compiler eq 'egcc' ) { $comptmp = `$Compiler --version`; chop($comptmp); print LOG "Compiler is -- $Compiler \($comptmp\)\n"; } else { print LOG "Compiler is -- $Compiler\n"; } print LOG "===============================\n"; } $BuildStatus = 0; mkdir($TopLevel, 0777); chdir($TopLevel) || die "chdir($TopLevel): $!\n"; if ( $BuildClassic ) { print"$CVS $CVSCO $BuildModule\n"; print LOG "$CVS $CVSCO $BuildModule\n"; open (PULL, "$CVS $CVSCO $BuildModule 2>&1 |") || die "open: $!\n"; } else { print "$CVS $CVSCO mozilla/client.mk\n"; print LOG "$CVS $CVSCO mozilla/client.mk\n"; open (PULL, "$CVS $CVSCO mozilla/client.mk 2>&1 |") || die "open: $!\n"; } while () { print $_; print LOG $_; } close(PULL); # Do a separate checkout with toplevel makefile if ( $BuildClassic == 0 ) { print LOG "$Make -f mozilla/client.mk checkout CVSCO=\"$CVS $CVSCO\"|\n"; open (PULLALL, "$Make -f mozilla/client.mk checkout CVSCO=\"$CVS $CVSCO\" |\n"); while () { print LOG $_; print $_; } close(PULLALL); } chdir($Topsrcdir) || die "chdir($Topsrcdir): $!\n"; print LOG "Build nspr\n"; open (BUILDNSPR, "gmake -C nsprpub $NSPRArgs export 2>&1 | ") || die "Build nspr: $!\n"; while () { print LOG $_; print $_; } print LOG "$ConfigGuess\n"; $BuildObjName = "obj-"; open (GETOBJ, "$ConfigGuess 2>&1 |") || die "$ConfigGuess: $!\n"; while () { print $_; print LOG $_; chomp($BuildObjName .= $_); } close (GETOBJ); mkdir($BuildObjName, 0777); chdir($BuildObjName) || die "chdir($BuildObjName): $!\n"; print LOG "$ConfigureEnvArgs ../configure $ConfigureArgs\n"; open (CONFIGURE, "$ConfigureEnvArgs $ShellOverride ../configure $ConfigureArgs 2>&1 |") || die "../configure: $!\n"; while () { print $_; print LOG $_; } close(CONFIGURE); print "--- config.cache.\n"; print LOG "--- config.cache.\n"; open (CONFIGURE, "config.cache"); while () { print $_; print LOG $_; } close(CONFIGURE); print "--- config.cache.\n"; print LOG "--- config.cache.\n"; # If we are building depend, rebuild dependencies if ( $BuildDepend ) { print LOG "$Make MAKE='$Make $jflag' depend 2>&1 |\n"; open ( MAKEDEPEND, "$Make MAKE='$Make $jflag' depend 2>&1 |\n"); while ( ) { print $_; print LOG $_; } close (MAKEDEPEND); system("rm -rf dist"); } else { # Building clobber print LOG "$Make MAKE='$Make $jflag' $ClobberStr 2>&1 |\n"; open( MAKECLOBBER, "$Make MAKE='$Make $jflag' $ClobberStr 2>&1 |"); while ( ) { print $_; print LOG $_; } close( MAKECLOBBER ); } @felist = split(/,/, $FE); foreach $fe ( @felist ) { if ( &BinaryExists($fe) ) { print LOG "deleting existing binary\n"; &DeleteBinary($fe); } } if ( $BuildClassic ) { # Build the BE only print LOG "$Make MAKE='$Make $jflag' MOZ_FE= 2>&1 |\n"; open( BEBUILD, "$Make MAKE='$Make $jflag' MOZ_FE= 2>&1 |"); while ( ) { print $_; print LOG $_; } close( BEBUILD ); foreach $fe ( @felist ) { # Now build each front end print LOG "$Make MAKE='$Make $jflag' -C cmd/${fe}fe 2>&1 |\n"; open(FEBUILD, "$Make MAKE='$Make $jflag' -C cmd/${fe}fe 2>&1 |\n"); while () { print $_; print LOG $_; } close(FEBUILD); } } else { print LOG "$Make MAKE='$Make $jflag' $MakeOverrides 2>&1 |\n"; open(BUILD, "$Make MAKE='$Make $jflag' $MakeOverrides 2>&1 |\n"); while () { print $_; print LOG $_; } close(BUILD); } foreach $fe (@felist) { if ( &BinaryExists($fe) ) { if ( $RunTest ) { print LOG "export binary exists, build successful. Testing...\n"; $BuildStatus = &RunSmokeTest($fe); } else { print LOG "export binary exists, build successful. Skipping test.\n"; $BuildStatus = 0; } } else { print LOG "export binary missing, build FAILED\n"; $BuildStatus = 666; } if ( $BuildStatus == 0 ) { $BuildStatusStr = 'success'; } elsif ( $BuildStatus == 333 ) { $BuildStatusStr = 'testfailed'; } else { $BuildStatusStr = 'busted'; } print LOG "tinderbox: tree: $BuildTree\n"; print LOG "tinderbox: builddate: $StartTime\n"; print LOG "tinderbox: status: $BuildStatusStr\n"; print LOG "tinderbox: build: $BuildName $fe\n"; print LOG "tinderbox: errorparser: unix\n"; print LOG "tinderbox: buildfamily: unix\n"; print LOG "tinderbox: END\n"; } close(LOG); chdir("$StartDir"); # this fun line added on 2/5/98. do not remove. Translated to english, # that's "take any line longer than 1000 characters, and split it into less # than 1000 char lines. If any of the resulting lines is # a dot on a line by itself, replace that with a blank line." # This is to prevent cases where a . occurs in the log file. Sendmail # interprets that as the end of the mail, and truncates the log before # it gets to Tinderbox. (terry weismann, chris yeh) # # This was replaced by a perl 'port' of the above, writen by # preed@netscape.com; good things: no need for system() call, and now it's # all in perl, so we don't have to do OS checking like before. open(LOG, "$logfile") || die "Couldn't open logfile: $!\n"; open(OUTLOG, ">${logfile}.last") || die "Couldn't open logfile: $!\n"; while () { $q = 0; for (;;) { $val = $q * 1000; $Output = substr($_, $val, 1000); last if ( $Output eq undef ); $Output =~ s/^\.$//g; $Output =~ s/\n//g; print OUTLOG "$Output\n"; $q++; } } #EndWhile close(LOG); close(OUTLOG); system( "$mail $Tinderbox_server < ${logfile}.last" ) if ( $ReportStatus ); unlink("$logfile"); # If this is a test run, set early_exit to 0. # This mean one loop of execution $EarlyExit++ if ( $BuildOnce ); } } sub CVSTime { my($StartTimeArg) = @_; my($RetTime, $sec, $minute, $hour, $mday, $mon, $year); ($sec,$minute,$hour,$mday,$mon,$year) = localtime($StartTimeArg); $mon++; # month is 0 based. if ( $UseTimeStamp ) { $BuildStart = `date '+%D %H:%M'`; chop($BuildStart); $CVSCO .= " -D '$BuildStart'"; } sprintf("%02d/%02d/%02d %02d:%02d:00", $mon,$mday,$year,$hour,$minute ); } sub StartBuild { my($fe, @felist); @felist = split(/,/, $FE); open( LOG, "|$mail $Tinderbox_server" ); foreach $fe ( @felist ) { print LOG "\n"; print LOG "tinderbox: tree: $BuildTree\n"; print LOG "tinderbox: builddate: $StartTime\n"; print LOG "tinderbox: status: building\n"; print LOG "tinderbox: build: $BuildName $fe\n"; print LOG "tinderbox: errorparser: unix\n"; print LOG "tinderbox: buildfamily: unix\n"; print LOG "tinderbox: END\n"; print LOG "\n"; } close( LOG ); } # check for the existence of the binary sub BinaryExists { my($fe) = @_; my($Binname); $fe = 'x' if ( !defined($fe) ); if ( $BuildClassic ) { $BinName = $BuildDir . '/' . $TopLevel . '/' . $Topsrcdir . '/'. $BuildObjName . "/cmd/${fe}fe/" . $BinaryName{"$fe"}; } else { $BinName = $BuildDir . '/' . $TopLevel . '/' . $Topsrcdir . '/' . $BuildObjName . $BinaryName{"$fe"}; } print LOG $BinName . "\n"; if ( (-e $BinName) && (-x $BinName) && (-s $BinName) ) { 1; } else { 0; } } sub DeleteBinary { my($fe) = @_; my($BinName); $fe = 'x' if ( !defined($fe) ); if ( $BuildClassic ) { $BinName = $BuildDir . '/' . $TopLevel . '/' . $Topsrcdir . '/' . $BuildObjName . "/cmd/${fe}fe/" . $BinaryName{"$fe"}; } else { $BinName = $BuildDir . '/' . $TopLevel . '/' . $Topsrcdir . '/' . $BuildObjName . $BinaryName{"$fe"}; } print LOG "unlinking $BinName\n"; unlink ($BinName) || print LOG "unlinking $BinName failed\n"; } sub ParseArgs { my($i, $manArg); if( @ARGV == 0 ) { &PrintUsage; } $i = 0; $manArg = 0; while( $i < @ARGV ) { if ( $ARGV[$i] eq '--classic' ) { $BuildClassic = 1; } elsif ( $ARGV[$i] eq '--clobber' ) { $BuildDepend = 0; $manArg++; } elsif ( $ARGV[$i] eq '--compress' ) { $CVS = 'cvs -q -z3'; } elsif ( $ARGV[$i] eq '--depend' ) { $BuildDepend = 1; $manArg++; } elsif ( $ARGV[$i] eq '--help' || $ARGV[$i] eq '-h' ) { $PrintUsage; } elsif ( $ARGV[$i] eq '--nodeps' ) { $ConfigureArgs .= '--enable-md=no '; } elsif ( $ARGV[$i] eq '--noreport' ) { $ReportStatus = 0; } elsif ( $ARGV[$i] eq '--notest' ) { $RunTest = 0; } elsif ( $ARGV[$i] eq '--once' ) { $BuildOnce = 1; } elsif ( $ARGV[$i] eq '-tag' ) { $i++; $BuildTag = $ARGV[$i]; if ( $BuildTag eq '' || $BuildTag eq '-t' ) { &PrintUsage; } } elsif ( $ARGV[$i] eq '--timestamp' ) { $UseTimeStamp = 1; } elsif ( $ARGV[$i] eq '-t' ) { $i++; $BuildTree = $ARGV[$i]; if ( $BuildTree eq '' ) { &PrintUsage; } } elsif ( $ARGV[$i] eq '--version' || $ARGV[$i] eq '-v' ) { die "$0: version" . substr($Version,9,6) . "\n"; } else { &PrintUsage; } $i++; } if ( $BuildTree =~ /^\s+$/i ) { &PrintUsage; } if ( $BuildDepend eq undef ) { &PrintUsage; } &PrintUsage if ( $manArg == 0 ); } sub PrintUsage { die "usage: $0 --depend | --clobber [ --once --classic --compress --noreport --notest --timestamp -tag TREETAG -t TREENAME --version ]\n"; } sub PrintEnv { my($key); foreach $key (sort(keys %ENV)) { print LOG $key, '=', $ENV{$key}, "\n"; print $key, '=', $ENV{$key}, "\n"; } } sub RunSmokeTest { my($fe) = @_; my($Binary); my($status) = 0; my($waittime) = 45; my($pid) = fork; $fe = 'x' if ( !defined($fe) ); $Binary = $BuildDir . '/' . $TopLevel . '/' . $Topsrcdir . '/' . $BuildObjName . $BinaryName{"$fe"}; print LOG $Binary . "\n"; exec $Binary if ( !$pid ); # parent - wait $waittime seconds then check on child sleep $waittime; $status = waitpid($pid, WNOHANG()); if ( $status != 0 ) { print LOG "$Binary has crashed or quit. Turn the tree orange now.\n"; return 333; } print LOG "Success! $Binary is still running. Killing...\n"; # try to kill 3 times, then try a kill -9 for ($i=0 ; $i<3 ; $i++) { kill('TERM',$pid,); # give it 3 seconds to actually die sleep 3; $status = waitpid($pid, WNOHANG()); last if ( $status != 0 ); } return 0; } # Main function &InitVars; &ParseArgs; &ConditionalArgs; &GetSystemInfo; &SetupEnv; &SetupPath; &BuildIt; 1;