| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- #!/usr/bin/perl
- # tinderbox_build.pl
- # This script builds the nagiosplugins and then sends
- # logs back to the master tinderbox server
- #
- # This script is based on mozilla-unix.pl which comes with tinderbox2
- #
- # See http://tinderbox.altinity.org for more details
- require 5.000;
- use strict;
- use Sys::Hostname;
- use Cwd;
- use Time::Local;
- my $Version = `git describe --abbrev=4 HEAD`;
- my $myhost = hostname;
- chomp($myhost);
- my ($host, $junk) = split(/\./, $myhost);
-
- my $BuildAdministrator = $ENV{TINDERBOX_BUILD_ADMIN} || "$ENV{'USER'}\@$myhost";
- my $TmpDir = $ENV{TMPDIR} || "/tmp";
- #Default values of cmdline opts
- my $ReportStatus = 0; # Do not send results to server
- # Set these to what makes sense for your system
- # Set these proper values for your tinderbox server
- # Have the StrictHostKeyChecking=no so that a new host will automatically add hostkey without
- # prompting. If host key changes, then will get error, so this should still be secure
- my $Tinderbox_server = '-p 1022 -o StrictHostKeyChecking=no tinderbox2@tinderbox.opsera.com';
- # These shouldn't really need to be changed
- my $BuildTree = 'nagiosplug';
- my $BuildName = '';
- my $ConfigureArgs = $ENV{CONFIGURE_ARGS};
- my $OS = `uname -s`;
- my $OSVer = `uname -r`;
-
- chop($OS, $OSVer);
-
- if ( $OS eq 'AIX' ) {
- $OSVer = `uname -v`;
- chop($OSVer);
- $OSVer = $OSVer . "." . `uname -r`;
- chop($OSVer);
- }
-
- if ( $OS eq 'IRIX64' ) {
- $OS = 'IRIX';
- }
-
- if ( $OS eq 'SCO_SV' ) {
- $OS = 'SCOOS';
- $OSVer = '5.0';
- }
-
- if ( "$host" ne "" ) {
- $BuildName = $host . ' ';
- }
- $BuildName .= $OS . ' ' . $OSVer;
- $_ = $BuildName;
- s/ /_/g;
- my $logfile = "$_.log";
- sub BuildIt {
- my ($fe, @felist, $EarlyExit, $LastTime);
- my $StartDir = getcwd();
- $LastTime = 0;
- print "Starting dir is : $StartDir\n";
- my $EarlyExit = 0;
- chdir("$StartDir");
- my $StartTime = time;
- if (-e (my $file = "nagios-plugins.spec")) {
- open F, $file;
- while (<F>) {
- if (/^Version: trunk-(\d\d\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/) {
- $StartTime = timegm(0, $5, $4, $3, ($2 - 1), ($1 - 1900));
- last;
- }
- }
- }
- print "Start time is $StartTime",$/;
- my $CurrentDir = getcwd();
- if ( $CurrentDir ne $StartDir ) {
- print "startdir: $StartDir, curdir $CurrentDir\n";
- die "curdir != startdir";
- }
- unlink( "$logfile" );
-
- print "opening $logfile\n";
- open( LOG, ">$logfile" ) || print "can't open $?\n";
- print LOG "current dir is -- $host:$CurrentDir\n";
- print LOG "Build Administrator is $BuildAdministrator\n";
- &PrintEnv;
-
- my $BuildStatus;
- if (&configure) {
- if (&make) {
- if (&maketest) {
- $BuildStatus = "success";
- } else {
- $BuildStatus = "test_failed";
- }
- } else {
- $BuildStatus = "build_failed";
- }
- } else {
- $BuildStatus = "busted";
- }
- print LOG "\nBuild Status = $BuildStatus\n";
- close(LOG);
- chdir("$StartDir");
-
- # TV: Leaving this in, because process mail program probably has some
- # limitation retained
- # 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 <cr>.<cr> 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";
-
- print OUTLOG $/;
- print OUTLOG "tinderbox: tree: $BuildTree\n";
- print OUTLOG "tinderbox: builddate: $StartTime\n";
- print OUTLOG "tinderbox: status: $BuildStatus\n";
- print OUTLOG "tinderbox: build: $BuildName $fe\n";
- print OUTLOG "tinderbox: errorparser: unix\n";
- print OUTLOG "tinderbox: buildfamily: unix\n";
- print OUTLOG "tinderbox: END\n";
- print OUTLOG $/;
- while (<LOG>) {
- my $q = 0;
-
- for (;;) {
- my $val = $q * 1000;
- my $Output = substr($_, $val, 1000);
-
- last if $Output eq undef;
-
- $Output =~ s/^\.$//g;
- $Output =~ s/\n//g;
- print OUTLOG "$Output\n";
- $q++;
- } #EndFor
-
- } #EndWhile
-
- close(LOG);
- close(OUTLOG);
- if ($ReportStatus) {
- system( "ssh $Tinderbox_server tinderbox_receive < ${logfile}.last" )
- } else {
- print <<"EOF"
- Not sending logs to http://tinderbox.altinity.org
- If you have SSH keys setup on the tinderbox server, you can manually send
- with 'ssh $Tinderbox_server tinderbox_receive < ${logfile}.last'
- EOF
- }
-
- unlink("$logfile");
- print "Finished building for tinderbox",$/;
- } #EndSub-BuildIt
- sub ParseArgs {
- my($i);
- $i = 0;
- while( $i < @ARGV ) {
- if ($ARGV[$i] eq '--version' || $ARGV[$i] eq '-v') {
- die "$0: version $Version\n";
- } elsif ($ARGV[$i] eq '-y') {
- $ReportStatus = 1;
- } else {
- &PrintUsage;
- }
- $i++;
- } #EndWhile
- } #EndSub-ParseArgs
- sub PrintUsage {
- die "usage: $0 [-v | --version ] [-t do not send report to tinderbox server]\n";
- }
- sub PrintEnv {
- my ($key);
- foreach $key (keys %ENV) {
- print LOG "$key = $ENV{$key}\n";
- print "$key = $ENV{$key}\n";
- }
- # Print the NPTest variables
- if (-e "/var/tmp/NPTest.cache") {
- open F, "/var/tmp/NPTest.cache";
- print LOG "NPTest variables:\n";
- print LOG <F>;
- close F;
- }
-
- } #EndSub-PrintEnv
- sub SetupPath {
- my($Path);
- $Path = $ENV{PATH};
- print "Path before: $Path\n";
- if ( $OS eq 'SunOS' ) {
- $ENV{'PATH'} = '/usr/ccs/bin:' . $ENV{'PATH'};
- }
- $Path = $ENV{PATH};
- print "Path After: $Path\n";
- } #EndSub-SetupPath
- sub configure {
- # Configure
- print LOG "./configure $ConfigureArgs\n";
- open (CONFIGURE, "./configure $ConfigureArgs 2>&1 |") || die "../configure: $!\n";
- while (<CONFIGURE>) {
- print $_;
- print LOG $_;
- }
- close(CONFIGURE);
- return ! $?;
- }
-
- sub make {
- # Building
- print LOG "make 2>&1\n";
- open( MAKE, "make 2>&1 |");
- while ( <MAKE> ) {
- print $_;
- print LOG $_;
- }
- close( MAKE);
- return ! $?;
- }
- sub maketest {
- # Tests
- print LOG "LANG=C make test 2>&1\n";
- open( MAKE, "LANG=C make test && make install DESTDIR=$TmpDir/tinderbox_build.$$ && make install-strip DESTDIR=$TmpDir/tinderbox_build2.$$ 2>&1 |");
- while ( <MAKE> ) {
- print $_;
- print LOG $_;
- }
- close( MAKE);
- my $rc = $?;
- system("rm -fr $TmpDir/tinderbox_build.$$ $TmpDir/tinderbox_build2.$$");
- return ! $rc;
- }
- # Main function
- &ParseArgs;
- &SetupPath;
- &BuildIt;
- 1;
|