#! /var/run/current-system/sw/bin/perl -w use strict; use File::Basename; use File::stat; use Hydra::Schema; use Hydra::Helper::Nix; use Email::Sender::Simple qw(sendmail); use Email::Sender::Transport::SMTP; use Email::Simple; use Email::Simple::Creator; use Sys::Hostname::Long; use Config::General; STDOUT->autoflush(); my $db = openHydraDB; my %config = new Config::General($ENV{"HYDRA_CONFIG"})->getall; sub getBuildLog { my ($drvPath) = @_; my $logPath = "/nix/var/log/nix/drvs/" . basename $drvPath; return -e $logPath ? $logPath : undef; } sub sendEmailNotification { my ($build) = @_; die unless defined $build->resultInfo; return if !$build->maintainers; # Do we want to send mail? if ($build->resultInfo->buildstatus == 0) { # Build succeeded. Only send mail if the previous build for # the same platform failed. return; # TODO } # Send mail. # !!! should use the Template Toolkit here. print STDERR "sending mail notification to ", $build->maintainers, "\n"; my $jobName = $build->project->name . ":" . $build->jobset->name . ":" . $build->job->name; my $status = $build->resultInfo->buildstatus == 0 ? "SUCCEEDED" : "FAILED"; my $sender = $config{'notification_sender'} || (($ENV{'USER'} || "hydra") . "@" . hostname_long . "\n"); my $selfURI = $config{'base_uri'} || "http://localhost:3000"; my $body = "Hi,\n" . "\n" . "This is to let you know that Hydra build " . $build->id . " of job " . $jobName . " has $status.\n" . "\n" . "The build information page can be found here: " . "$selfURI/build/" . $build->id . "\n" . "\n" . "Regards,\n\nThe Hydra build daemon.\n"; my $email = Email::Simple->create( header => [ To => $build->maintainers, From => "Hydra Build Daemon <$sender>", Subject => "Hydra job $jobName build " . $build->id . " $status", ], body => $body, ); print $email->as_string if $ENV{'HYDRA_MAIL_TEST'}; sendmail($email); } sub doBuild { my ($build) = @_; my $drvPath = $build->drvpath; my $outPath = $build->outpath; my $isCachedBuild = 1; my $outputCreated = 1; # i.e., the Nix build succeeded (but it could be a positive failure) my $startTime = 0; my $stopTime = 0; my $buildStatus = 0; # = succeeded my $errormsg = undef; if (!isValidPath($outPath)) { $isCachedBuild = 0; # Do the build. $startTime = time(); my $thisBuildFailed = 0; my $someBuildFailed = 0; # Run Nix to perform the build, and monitor the stderr output # to get notifications about specific build steps, the # associated log files, etc. my $cmd = "nix-store --max-silent-time 3600 --keep-going --no-build-output " . "--log-type flat --print-build-trace --realise $drvPath " . "--add-root " . gcRootFor $outPath . " 2>&1"; my $buildStepNr = $build->buildsteps->find({}, {select => {max => 'stepnr + 1'}, as => ['max']})->get_column('max') || 1; my %buildSteps; open OUT, "$cmd |" or die; while () { $errormsg .= $_; unless (/^@\s+/) { print STDERR "$_"; next; } if (/^@\s+build-started\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)$/) { my $drvPathStep = $1; txn_do($db, sub { $build->buildsteps->create( { stepnr => ($buildSteps{$drvPathStep} = $buildStepNr++) , type => 0 # = build , drvpath => $drvPathStep , outpath => $2 , logfile => $4 , busy => 1 , starttime => time }); }); } elsif (/^@\s+build-succeeded\s+(\S+)\s+(\S+)$/) { my $drvPathStep = $1; txn_do($db, sub { my $step = $build->buildsteps->find({stepnr => $buildSteps{$drvPathStep}}) or die; $step->update({busy => 0, status => 0, stoptime => time}); }); } elsif (/^@\s+build-failed\s+(\S+)\s+(\S+)\s+(\S+)\s+(.*)$/) { my $drvPathStep = $1; $someBuildFailed = 1; $thisBuildFailed = 1 if $drvPath eq $drvPathStep; my $errorMsg = $4; $errorMsg = "build failed previously (cached)" if $3 eq "cached"; txn_do($db, sub { if ($buildSteps{$drvPathStep}) { my $step = $build->buildsteps->find({stepnr => $buildSteps{$drvPathStep}}) or die; $step->update({busy => 0, status => 1, errormsg => $errorMsg, stoptime => time}); } # Don't write a record if this derivation already # failed previously. This can happen if this is a # restarted build. elsif (scalar $build->buildsteps->search({drvpath => $drvPathStep, type => 0, busy => 0, status => 1}) == 0) { $build->buildsteps->create( { stepnr => ($buildSteps{$drvPathStep} = $buildStepNr++) , type => 0 # = build , drvpath => $drvPathStep , outpath => $2 , logfile => getBuildLog($drvPathStep) , busy => 0 , status => 1 , starttime => time , stoptime => time , errormsg => $errorMsg }); } }); } elsif (/^@\s+substituter-started\s+(\S+)\s+(\S+)$/) { my $outPath = $1; txn_do($db, sub { $build->buildsteps->create( { stepnr => ($buildSteps{$outPath} = $buildStepNr++) , type => 1 # = substitution , outpath => $1 , busy => 1 , starttime => time }); }); } elsif (/^@\s+substituter-succeeded\s+(\S+)$/) { my $outPath = $1; txn_do($db, sub { my $step = $build->buildsteps->find({stepnr => $buildSteps{$outPath}}) or die; $step->update({busy => 0, status => 0, stoptime => time}); }); } elsif (/^@\s+substituter-failed\s+(\S+)\s+(\S+)\s+(\S+)$/) { my $outPath = $1; txn_do($db, sub { my $step = $build->buildsteps->find({stepnr => $buildSteps{$outPath}}) or die; $step->update({busy => 0, status => 1, errormsg => $3, stoptime => time}); }); } else { print STDERR "unknown Nix trace message: $_"; } } close OUT; my $res = $?; $stopTime = time(); if ($res != 0) { if ($thisBuildFailed) { $buildStatus = 1; } elsif ($someBuildFailed) { $buildStatus = 2; } else { $buildStatus = 3; } } # Only store the output of running Nix if we have a miscellaneous error. $errormsg = undef unless $buildStatus == 3; } done: txn_do($db, sub { $build->update({finished => 1, timestamp => time}); my $releaseName; if (-e "$outPath/nix-support/hydra-release-name") { open FILE, "$outPath/nix-support/hydra-release-name" or die; $releaseName = ; chomp $releaseName; close FILE; } $db->resultset('BuildResultInfo')->create( { id => $build->id , iscachedbuild => $isCachedBuild , buildstatus => $buildStatus , starttime => $startTime , stoptime => $stopTime , logfile => getBuildLog($drvPath) , errormsg => $errormsg , releasename => $releaseName }); if ($buildStatus == 0) { my $productnr = 1; if (-e "$outPath/nix-support/hydra-build-products") { open LIST, "$outPath/nix-support/hydra-build-products" or die; while () { /^([\w\-]+)\s+([\w\-]+)\s+(\S+)(\s+(\S+))?$/ or next; my $type = $1; my $subtype = $2 eq "none" ? "" : $2; my $path = $3; my $defaultPath = $5; next unless -e $path; my $fileSize, my $sha1, my $sha256; # !!! validate $path, $defaultPath if (-f $path) { my $st = stat($path) or die "cannot stat $path: $!"; $fileSize = $st->size; $sha1 = `nix-hash --flat --type sha1 $path` or die "cannot hash $path: $?";; chomp $sha1; $sha256 = `nix-hash --flat --type sha256 $path` or die "cannot hash $path: $?";; chomp $sha256; } my $name = $path eq $outPath ? "" : basename $path; $db->resultset('BuildProducts')->create( { build => $build->id , productnr => $productnr++ , type => $type , subtype => $subtype , path => $path , filesize => $fileSize , sha1hash => $sha1 , sha256hash => $sha256 , name => $name , defaultpath => $defaultPath }); } close LIST; } else { $db->resultset('BuildProducts')->create( { build => $build->id , productnr => $productnr++ , type => "nix-build" , subtype => "" , path => $outPath , name => $build->nixname }); } } $build->schedulingInfo->delete; }); sendEmailNotification $build; } my $buildId = $ARGV[0] or die; print STDERR "performing build $buildId\n"; if ($ENV{'HYDRA_MAIL_TEST'}) { sendEmailNotification $db->resultset('Builds')->find($buildId); exit 0; } # Lock the build. If necessary, steal the lock from the parent # process (runner.pl). This is so that if the runner dies, the # children (i.e. the build.pl instances) can continue to run and won't # have the lock taken away. my $build; txn_do($db, sub { $build = $db->resultset('Builds')->find($buildId); die "build $buildId doesn't exist" unless defined $build; die "build $buildId already done" if defined $build->resultInfo; if ($build->schedulingInfo->busy != 0 && $build->schedulingInfo->locker != getppid) { die "build $buildId is already being built"; } $build->schedulingInfo->update({busy => 1, locker => $$}); $build->buildsteps->search({busy => 1})->delete_all; $build->buildproducts->delete_all; }); die unless $build; # Do the build. If it throws an error, unlock the build so that it # can be retried. eval { doBuild $build; print "done\n"; }; if ($@) { warn $@; txn_do($db, sub { $build->schedulingInfo->update({busy => 0, locker => $$}); }); }