forked from lix-project/hydra
e0b2921ff2
This rewrites the top-level loop of hydra-evaluator in C++. The Perl stuff is moved into hydra-eval-jobset. (Rewriting the entire evaluator would be nice but is a bit too much work.) The new version has some advantages: * It can run multiple jobset evaluations in parallel. * It uses PostgreSQL notifications so it doesn't have to poll the database. So if a jobset is triggered via the web interface or from a GitHub / Bitbucket webhook, evaluation of the jobset will start almost instantaneously (assuming the evaluator is not at its concurrency limit). * It imposes a timeout on evaluations. So if e.g. hydra-eval-jobset hangs connecting to a Mercurial server, it will eventually be killed.
92 lines
2.9 KiB
Perl
92 lines
2.9 KiB
Perl
package Setup;
|
|
|
|
use strict;
|
|
use Exporter;
|
|
use Hydra::Helper::Nix;
|
|
use Hydra::Model::DB;
|
|
use Hydra::Helper::AddBuilds;
|
|
use Cwd;
|
|
|
|
our @ISA = qw(Exporter);
|
|
our @EXPORT = qw(hydra_setup nrBuildsForJobset queuedBuildsForJobset nrQueuedBuildsForJobset createBaseJobset createJobsetWithOneInput evalSucceeds runBuild updateRepository);
|
|
|
|
sub hydra_setup {
|
|
my ($db) = @_;
|
|
$db->resultset('Users')->create({ username => "root", emailaddress => 'root@invalid.org', password => '' });
|
|
}
|
|
|
|
sub nrBuildsForJobset {
|
|
my ($jobset) = @_;
|
|
return $jobset->builds->search({},{})->count ;
|
|
}
|
|
|
|
sub queuedBuildsForJobset {
|
|
my ($jobset) = @_;
|
|
return $jobset->builds->search({finished => 0});
|
|
}
|
|
|
|
sub nrQueuedBuildsForJobset {
|
|
my ($jobset) = @_;
|
|
return queuedBuildsForJobset($jobset)->count ;
|
|
}
|
|
|
|
sub createBaseJobset {
|
|
my ($jobsetName, $nixexprpath) = @_;
|
|
|
|
my $db = Hydra::Model::DB->new;
|
|
my $project = $db->resultset('Projects')->update_or_create({name => "tests", displayname => "", owner => "root"});
|
|
my $jobset = $project->jobsets->create({name => $jobsetName, nixexprinput => "jobs", nixexprpath => $nixexprpath, emailoverride => ""});
|
|
|
|
my $jobsetinput;
|
|
my $jobsetinputals;
|
|
|
|
$jobsetinput = $jobset->jobsetinputs->create({name => "jobs", type => "path"});
|
|
$jobsetinputals = $jobsetinput->jobsetinputalts->create({altnr => 0, value => getcwd."/jobs"});
|
|
|
|
return $jobset;
|
|
}
|
|
|
|
sub createJobsetWithOneInput {
|
|
my ($jobsetName, $nixexprpath, $name, $type, $uri) = @_;
|
|
my $jobset = createBaseJobset($jobsetName, $nixexprpath);
|
|
|
|
my $jobsetinput;
|
|
my $jobsetinputals;
|
|
|
|
$jobsetinput = $jobset->jobsetinputs->create({name => $name, type => $type});
|
|
$jobsetinputals = $jobsetinput->jobsetinputalts->create({altnr => 0, value => $uri});
|
|
|
|
return $jobset;
|
|
}
|
|
|
|
sub evalSucceeds {
|
|
my ($jobset) = @_;
|
|
my ($res, $stdout, $stderr) = captureStdoutStderr(60, ("hydra-eval-jobset", $jobset->project->name, $jobset->name));
|
|
chomp $stdout; chomp $stderr;
|
|
print STDERR "Evaluation errors for jobset ".$jobset->project->name.":".$jobset->name.": \n".$jobset->errormsg."\n" if $jobset->errormsg;
|
|
print STDERR "STDOUT: $stdout\n" if $stdout ne "";
|
|
print STDERR "STDERR: $stderr\n" if $stderr ne "";
|
|
return !$res;
|
|
}
|
|
|
|
sub runBuild {
|
|
my ($build) = @_;
|
|
my ($res, $stdout, $stderr) = captureStdoutStderr(60, ("hydra-queue-runner", "-vvvv", "--build-one", $build->id));
|
|
if ($res) {
|
|
print STDERR "Queue runner stdout: $stdout\n" if $stdout ne "";
|
|
print STDERR "Queue runner stderr: $stderr\n" if $stderr ne "";
|
|
}
|
|
return !$res;
|
|
}
|
|
|
|
sub updateRepository {
|
|
my ($scm, $update) = @_;
|
|
my ($res, $stdout, $stderr) = captureStdoutStderr(60, ($update, $scm));
|
|
die "unexpected update error with $scm: $stderr\n" if $res;
|
|
my ($message, $loop, $status) = $stdout =~ m/::(.*) -- (.*) -- (.*)::/;
|
|
print STDOUT "Update $scm repository: $message\n";
|
|
return ($loop eq "continue", $status eq "updated");
|
|
}
|
|
|
|
1;
|