forked from lix-project/hydra
Always record inputs passed through -I in the BuildInputs table
We currently have no way to determine if the Nix evaluator used a specific -I input, so we need to record all of them as inputs.
This commit is contained in:
parent
30e2b9046a
commit
2c677ec71a
|
@ -903,8 +903,17 @@ sub checkBuild {
|
|||
print STDERR " added to queue as build ", $build->id, "\n";
|
||||
}
|
||||
|
||||
# Record which inputs where used.
|
||||
my %inputs;
|
||||
$inputs{$jobset->nixexprinput} = $nixExprInput;
|
||||
foreach my $name (keys %{$inputInfo}) {
|
||||
# Unconditionally include all inputs that were included in
|
||||
# the Nix search path (through the -I flag). We currently
|
||||
# have no way to see which ones were actually used.
|
||||
$inputs{$name} = $inputInfo->{$name}->[0]
|
||||
if scalar @{$inputInfo->{$name}} == 1
|
||||
&& defined $inputInfo->{$name}->[0]->{storePath};
|
||||
}
|
||||
foreach my $arg (@{$buildInfo->{arg}}) {
|
||||
$inputs{$arg->{name}} = $inputInfo->{$arg->{name}}->[$arg->{altnr}]
|
||||
|| die "invalid input";
|
||||
|
|
|
@ -44,6 +44,7 @@ sub setJobsetError {
|
|||
sendJobsetErrorNotification($jobset, $errorMsg);
|
||||
}
|
||||
|
||||
|
||||
sub sendJobsetErrorNotification() {
|
||||
my ($jobset, $errorMsg) = @_;
|
||||
|
||||
|
|
Loading…
Reference in a new issue