2008-10-10 16:05:05 +00:00
|
|
|
#! @perl@ -w
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use XML::Simple;
|
2008-10-28 10:18:03 +00:00
|
|
|
use File::Basename;
|
2008-11-04 18:23:28 +00:00
|
|
|
use HydraFrontend::Schema;
|
2008-10-28 10:18:03 +00:00
|
|
|
|
|
|
|
|
2008-11-04 18:23:28 +00:00
|
|
|
my $db = HydraFrontend::Schema->connect("dbi:SQLite:dbname=hydra.sqlite", "", "", {});
|
2008-10-10 16:05:05 +00:00
|
|
|
|
|
|
|
|
2008-11-05 04:52:52 +00:00
|
|
|
sub isValidPath {
|
|
|
|
my $path = shift;
|
|
|
|
return system("nix-store --check-validity $path 2> /dev/null") == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-04 18:23:28 +00:00
|
|
|
sub buildJob {
|
2008-11-10 10:18:50 +00:00
|
|
|
my ($project, $jobset, $jobName, $description, $drvPath, $outPath, $usedInputs, $system) = @_;
|
2008-10-10 16:05:05 +00:00
|
|
|
|
2008-11-04 18:23:28 +00:00
|
|
|
if (scalar($db->resultset('Builds')->search({project => $project->name, jobset => $jobset->name, attrname => $jobName, outPath => $outPath})) > 0) {
|
|
|
|
print " already done\n";
|
|
|
|
return;
|
2008-10-10 16:05:05 +00:00
|
|
|
}
|
|
|
|
|
2008-10-28 17:08:29 +00:00
|
|
|
my $isCachedBuild = 1;
|
2008-11-07 15:29:52 +00:00
|
|
|
my $outputCreated = 1; # i.e., the Nix build succeeded (but it could be a positive failure)
|
2008-10-28 17:08:29 +00:00
|
|
|
my $startTime = 0;
|
|
|
|
my $stopTime = 0;
|
|
|
|
|
2008-11-05 04:52:52 +00:00
|
|
|
if (!isValidPath($outPath)) {
|
2008-10-28 17:08:29 +00:00
|
|
|
$isCachedBuild = 0;
|
|
|
|
|
|
|
|
$startTime = time();
|
|
|
|
|
2008-11-04 18:23:28 +00:00
|
|
|
print " BUILDING\n";
|
|
|
|
|
|
|
|
my $res = system("nix-store --realise $drvPath");
|
2008-10-10 16:05:05 +00:00
|
|
|
|
2008-10-28 17:08:29 +00:00
|
|
|
$stopTime = time();
|
|
|
|
|
2008-11-07 15:29:52 +00:00
|
|
|
$outputCreated = $res == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $buildStatus;
|
|
|
|
|
|
|
|
if ($outputCreated) {
|
|
|
|
# "Positive" failures, e.g. the builder returned exit code 0
|
|
|
|
# but flagged some error condition.
|
|
|
|
$buildStatus = -e "$outPath/nix-support/failed" ? 2 : 0;
|
|
|
|
} else {
|
|
|
|
$buildStatus = 1; # = Nix failure
|
2008-10-28 17:08:29 +00:00
|
|
|
}
|
2008-10-10 16:05:05 +00:00
|
|
|
|
2008-11-04 18:23:28 +00:00
|
|
|
$db->txn_do(sub {
|
|
|
|
my $build = $db->resultset('Builds')->create(
|
|
|
|
{ timestamp => time()
|
|
|
|
, project => $project->name
|
|
|
|
, jobset => $jobset->name
|
|
|
|
, attrname => $jobName
|
2008-11-10 10:18:50 +00:00
|
|
|
, description => $description
|
2008-11-04 18:23:28 +00:00
|
|
|
, drvpath => $drvPath
|
|
|
|
, outpath => $outPath
|
|
|
|
, iscachedbuild => $isCachedBuild
|
|
|
|
, buildstatus => $buildStatus
|
|
|
|
, starttime => $startTime
|
|
|
|
, stoptime => $stopTime
|
2008-11-06 18:26:29 +00:00
|
|
|
, system => $system
|
2008-11-04 18:23:28 +00:00
|
|
|
});
|
2008-11-05 01:58:29 +00:00
|
|
|
print " build ID = ", $build->id, "\n";
|
|
|
|
|
2008-11-05 23:08:16 +00:00
|
|
|
foreach my $inputName (keys %{$usedInputs}) {
|
|
|
|
my $input = $usedInputs->{$inputName};
|
2008-11-09 00:48:36 +00:00
|
|
|
$db->resultset('Inputs')->create(
|
|
|
|
{ build => $build->id
|
2008-11-06 18:26:29 +00:00
|
|
|
, name => $inputName
|
|
|
|
, type => $input->{type}
|
|
|
|
, uri => $input->{uri}
|
|
|
|
#, revision => $input->{orig}->revision
|
|
|
|
#, tag => $input->{orig}->tag
|
|
|
|
, value => $input->{value}
|
2008-11-09 00:48:36 +00:00
|
|
|
, dependency => $input->{id}
|
2008-11-06 18:26:29 +00:00
|
|
|
, path => ($input->{storePath} or "") # !!! temporary hack
|
|
|
|
});
|
2008-11-05 06:23:41 +00:00
|
|
|
}
|
|
|
|
|
2008-11-05 01:58:29 +00:00
|
|
|
my $logPath = "/nix/var/log/nix/drvs/" . basename $drvPath;
|
|
|
|
if (-e $logPath) {
|
|
|
|
print " LOG $logPath\n";
|
|
|
|
$db->resultset('Buildlogs')->create(
|
2008-11-09 00:48:36 +00:00
|
|
|
{ build => $build->id
|
2008-11-05 01:58:29 +00:00
|
|
|
, logphase => "full"
|
|
|
|
, path => $logPath
|
|
|
|
, type => "raw"
|
|
|
|
});
|
|
|
|
}
|
2008-10-28 10:18:03 +00:00
|
|
|
|
2008-11-07 15:29:52 +00:00
|
|
|
if ($outputCreated) {
|
2008-11-05 01:58:29 +00:00
|
|
|
|
|
|
|
if (-e "$outPath/log") {
|
|
|
|
foreach my $logPath (glob "$outPath/log/*") {
|
|
|
|
print " LOG $logPath\n";
|
|
|
|
$db->resultset('Buildlogs')->create(
|
2008-11-09 00:48:36 +00:00
|
|
|
{ build => $build->id
|
2008-11-05 01:58:29 +00:00
|
|
|
, logphase => basename($logPath)
|
|
|
|
, path => $logPath
|
|
|
|
, type => "raw"
|
|
|
|
});
|
|
|
|
}
|
2008-10-28 10:18:03 +00:00
|
|
|
}
|
2008-11-07 17:10:34 +00:00
|
|
|
|
|
|
|
if (-e "$outPath/nix-support/hydra-build-products") {
|
|
|
|
open LIST, "$outPath/nix-support/hydra-build-products" or die;
|
|
|
|
while (<LIST>) {
|
|
|
|
/^(\w+)\s+([\w-]+)\s+(\S+)$/ or die;
|
|
|
|
my $type = $1;
|
|
|
|
my $subtype = $2;
|
|
|
|
my $path = $3;
|
|
|
|
die unless -e $path;
|
|
|
|
$db->resultset('Buildproducts')->create(
|
2008-11-09 00:48:36 +00:00
|
|
|
{ build => $build->id
|
2008-11-07 17:10:34 +00:00
|
|
|
, type => $type
|
|
|
|
, subtype => $subtype
|
|
|
|
, path => $path
|
|
|
|
});
|
|
|
|
}
|
|
|
|
close LIST;
|
|
|
|
} else {
|
|
|
|
$db->resultset('Buildproducts')->create(
|
2008-11-09 00:48:36 +00:00
|
|
|
{ build => $build->id
|
2008-11-07 17:10:34 +00:00
|
|
|
, type => "nix-build"
|
|
|
|
, subtype => ""
|
|
|
|
, path => $outPath
|
|
|
|
});
|
|
|
|
}
|
2008-10-28 10:18:03 +00:00
|
|
|
}
|
2008-11-05 01:58:29 +00:00
|
|
|
|
|
|
|
});
|
2008-10-28 10:18:03 +00:00
|
|
|
|
2008-10-10 16:05:05 +00:00
|
|
|
}
|
2008-11-04 18:23:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
sub fetchInput {
|
2008-11-06 18:26:29 +00:00
|
|
|
my ($input, $alt, $inputInfo) = @_;
|
2008-11-04 18:23:28 +00:00
|
|
|
my $type = $input->type;
|
|
|
|
|
|
|
|
if ($type eq "path") {
|
2008-11-06 18:26:29 +00:00
|
|
|
my $uri = $alt->uri;
|
2008-11-04 18:23:28 +00:00
|
|
|
my $storePath = `nix-store --add "$uri"`
|
|
|
|
or die "cannot copy path $uri to the Nix store";
|
|
|
|
chomp $storePath;
|
2008-11-07 14:51:44 +00:00
|
|
|
print " copied to $storePath\n";
|
2008-11-06 18:26:29 +00:00
|
|
|
$$inputInfo{$input->name} = {type => $type, uri => $uri, storePath => $storePath};
|
2008-11-04 18:23:28 +00:00
|
|
|
}
|
|
|
|
|
2008-11-06 18:26:29 +00:00
|
|
|
elsif ($type eq "string") {
|
|
|
|
die unless defined $alt->value;
|
|
|
|
$$inputInfo{$input->name} = {type => $type, value => $alt->value};
|
|
|
|
}
|
|
|
|
|
2008-11-04 18:23:28 +00:00
|
|
|
else {
|
|
|
|
die "input `" . $input->type . "' has unknown type `$type'";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-07 14:51:44 +00:00
|
|
|
sub checkJob {
|
|
|
|
my ($project, $jobset, $inputInfo, $nixExprPath, $jobName, $jobExpr, $extraArgs) = @_;
|
2008-11-06 18:26:29 +00:00
|
|
|
|
2008-11-07 14:51:44 +00:00
|
|
|
# Instantiate the store derivation.
|
|
|
|
my $drvPath = `nix-instantiate $nixExprPath --attr $jobName $extraArgs`
|
|
|
|
or die "cannot evaluate the Nix expression containing the job definitions: $?";
|
|
|
|
chomp $drvPath;
|
2008-11-04 18:23:28 +00:00
|
|
|
|
2008-11-07 14:51:44 +00:00
|
|
|
# Call nix-env --xml to get info about this job (drvPath, outPath, meta attributes, ...).
|
|
|
|
my $infoXml = `nix-env -f $nixExprPath --query --available "*" --attr-path --out-path --drv-path --meta --xml --system-filter "*" --attr $jobName $extraArgs`
|
|
|
|
or die "cannot get information about the job: $?";
|
|
|
|
|
2008-11-10 10:18:50 +00:00
|
|
|
my $info = XMLin($infoXml, ForceArray => 1, KeyAttr => ['attrPath', 'name'])
|
2008-11-07 14:51:44 +00:00
|
|
|
or die "cannot parse XML output";
|
|
|
|
|
2008-11-10 10:18:50 +00:00
|
|
|
my $job = $info->{item}->{$jobName};
|
|
|
|
die if !defined $job;
|
2008-11-07 14:51:44 +00:00
|
|
|
|
|
|
|
my $description = defined $job->{meta}->{description} ? $job->{meta}->{description}->{value} : "";
|
|
|
|
die unless $job->{drvPath} eq $drvPath;
|
|
|
|
my $outPath = $job->{outPath};
|
|
|
|
|
2008-11-10 10:18:50 +00:00
|
|
|
buildJob($project, $jobset, $jobName, $description, $drvPath, $outPath, $inputInfo, $job->{system});
|
2008-11-07 14:51:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
sub checkJobAlternatives {
|
|
|
|
my ($project, $jobset, $inputInfo, $nixExprPath, $jobName, $jobExpr, $extraArgs, $argsNeeded, $n) = @_;
|
|
|
|
|
|
|
|
if ($n >= scalar @{$argsNeeded}) {
|
2008-11-09 00:48:36 +00:00
|
|
|
eval {
|
|
|
|
checkJob($project, $jobset, $inputInfo, $nixExprPath, $jobName, $jobExpr, $extraArgs);
|
|
|
|
};
|
|
|
|
warn $@ if $@;
|
2008-11-07 14:51:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $argName = @{$argsNeeded}[$n];
|
|
|
|
print " finding alternatives for argument $argName\n";
|
|
|
|
|
|
|
|
my ($input) = $jobset->jobsetinputs->search({name => $argName});
|
|
|
|
|
2008-11-07 15:29:52 +00:00
|
|
|
my %newInputInfo = %{$inputInfo}; $inputInfo = \%newInputInfo; # clone
|
|
|
|
|
2008-11-07 14:51:44 +00:00
|
|
|
if (defined $input) {
|
|
|
|
|
|
|
|
foreach my $alt ($input->jobsetinputalts) {
|
|
|
|
print " INPUT ", $input->name, " (type ", $input->type, ") alt ", $alt->altnr, "\n";
|
|
|
|
fetchInput($input, $alt, $inputInfo); # !!! caching
|
|
|
|
my $newArgs = "";
|
|
|
|
if (defined $inputInfo->{$argName}->{storePath}) {
|
|
|
|
# !!! escaping
|
|
|
|
$newArgs = " --arg $argName '{path = " . $inputInfo->{$argName}->{storePath} . ";}'";
|
|
|
|
} elsif (defined $inputInfo->{$argName}->{value}) {
|
|
|
|
$newArgs = " --argstr $argName '" . $inputInfo->{$argName}->{value} . "'";
|
|
|
|
}
|
|
|
|
checkJobAlternatives(
|
|
|
|
$project, $jobset, $inputInfo, $nixExprPath,
|
|
|
|
$jobName, $jobExpr, $extraArgs . $newArgs, $argsNeeded, $n + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
(my $prevBuild) = $db->resultset('Builds')->search(
|
|
|
|
{project => $project->name, jobset => $jobset->name, attrname => $argName, buildStatus => 0},
|
|
|
|
{order_by => "timestamp DESC", rows => 1});
|
|
|
|
|
|
|
|
if (!defined $prevBuild) {
|
|
|
|
# !!! reschedule?
|
|
|
|
die "missing input `$argName'";
|
|
|
|
}
|
|
|
|
|
|
|
|
# The argument name matches a previously built job in this
|
|
|
|
# jobset. Pick the most recent build. !!! refine the
|
|
|
|
# selection criteria: e.g., most recent successful build.
|
|
|
|
if (!isValidPath($prevBuild->outpath)) {
|
|
|
|
die "input path " . $prevBuild->outpath . " has been garbage-collected";
|
|
|
|
}
|
|
|
|
|
|
|
|
$$inputInfo{$argName} =
|
|
|
|
{ type => "build"
|
|
|
|
, storePath => $prevBuild->outpath
|
|
|
|
, id => $prevBuild->id
|
|
|
|
};
|
|
|
|
|
|
|
|
checkJobAlternatives(
|
|
|
|
$project, $jobset, $inputInfo, $nixExprPath,
|
|
|
|
$jobName, $jobExpr,
|
|
|
|
$extraArgs . " --arg $argName '{path = " . $prevBuild->outpath . ";}'",
|
|
|
|
$argsNeeded, $n + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub checkJobSet {
|
|
|
|
my ($project, $jobset) = @_;
|
|
|
|
my $inputInfo = {};
|
|
|
|
|
|
|
|
# Fetch the input containing the Nix expression.
|
|
|
|
(my $exprInput) = $jobset->jobsetinputs->search({name => $jobset->nixexprinput});
|
|
|
|
die unless defined $exprInput;
|
|
|
|
|
|
|
|
die "not supported yet" if scalar($exprInput->jobsetinputalts) != 1;
|
|
|
|
|
|
|
|
fetchInput($exprInput, $exprInput->jobsetinputalts->first, $inputInfo);
|
|
|
|
|
|
|
|
# Evaluate the Nix expression.
|
2008-11-04 18:23:28 +00:00
|
|
|
my $nixExprPath = $inputInfo->{$jobset->nixexprinput}->{storePath} . "/" . $jobset->nixexprpath;
|
|
|
|
|
|
|
|
print " EVALUATING $nixExprPath\n";
|
|
|
|
|
|
|
|
my $jobsXml = `nix-instantiate $nixExprPath --eval-only --strict --xml`
|
|
|
|
or die "cannot evaluate the Nix expression containing the jobs: $?";
|
|
|
|
|
|
|
|
my $jobs = XMLin($jobsXml,
|
2008-11-10 10:27:52 +00:00
|
|
|
ForceArray => ['value', 'attr'],
|
2008-11-04 18:23:28 +00:00
|
|
|
KeyAttr => ['name'],
|
|
|
|
SuppressEmpty => '',
|
|
|
|
ValueAttr => [value => 'value'])
|
|
|
|
or die "cannot parse XML output";
|
|
|
|
|
|
|
|
die unless defined $jobs->{attrs};
|
|
|
|
|
2008-11-07 14:51:44 +00:00
|
|
|
# Iterate over the attributes listed in the Nix expression and
|
|
|
|
# perform the builds described by them. If an attribute is a
|
|
|
|
# function, then fill in the function arguments with the
|
|
|
|
# (alternative) values supplied in the jobsetinputs table.
|
2008-11-04 18:23:28 +00:00
|
|
|
foreach my $jobName (keys(%{$jobs->{attrs}->{attr}})) {
|
|
|
|
print " JOB $jobName\n";
|
|
|
|
|
2008-11-07 14:51:44 +00:00
|
|
|
my @argsNeeded = ();
|
|
|
|
|
2008-11-04 18:23:28 +00:00
|
|
|
my $jobExpr = $jobs->{attrs}->{attr}->{$jobName};
|
|
|
|
|
2008-11-07 14:51:44 +00:00
|
|
|
# !!! fix the case where there is only 1 attr, XML::Simple fucks up as usual
|
2008-11-04 18:23:28 +00:00
|
|
|
if (defined $jobExpr->{function}->{attrspat}) {
|
|
|
|
foreach my $argName (keys(%{$jobExpr->{function}->{attrspat}->{attr}})) {
|
|
|
|
print " needs input $argName\n";
|
2008-11-07 14:51:44 +00:00
|
|
|
push @argsNeeded, $argName;
|
|
|
|
}
|
2008-11-04 18:23:28 +00:00
|
|
|
}
|
|
|
|
|
2008-11-09 00:48:36 +00:00
|
|
|
eval {
|
|
|
|
checkJobAlternatives(
|
|
|
|
$project, $jobset, {}, $nixExprPath,
|
|
|
|
$jobName, $jobExpr, "", \@argsNeeded, 0);
|
|
|
|
};
|
|
|
|
warn $@ if $@;
|
2008-11-06 18:26:29 +00:00
|
|
|
}
|
2008-11-04 18:23:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub checkJobs {
|
|
|
|
|
|
|
|
foreach my $project ($db->resultset('Projects')->all) {
|
|
|
|
print "PROJECT ", $project->name, "\n";
|
|
|
|
foreach my $jobset ($project->jobsets->all) {
|
|
|
|
print " JOBSET ", $jobset->name, "\n";
|
|
|
|
checkJobSet($project, $jobset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
checkJobs;
|