You can now add plugins to Hydra by writing a module called Hydra::Plugin::<whatever> and putting it in Perl's search path. The only plugin operation currently supported in buildFinished, called when hydra-build has finished doing a build.
For instance, a Twitter notification plugin would look like this:
package Hydra::Plugin::TwitterNotification;
sub buildFinished { my ($self, $db, $config, $build, $dependents) = @_; print STDERR "tweeting about build ", $build->id, "\n"; # send tweet… }
1;
5EQYVRWECBDJORGI5DRIOUEJXSXMRCQNT2562BM4Z4U52LT7JUHAC ZDNXMJ3J7OF5ZCZWCU6U5XEXCLVZVZYNLPWB74UNUC5ADQFODWAQC EUWLW7FYGZK4HKBA73SQDM4FWZGR5F6AGJW6WYZI2ECCIDWF5MRAC LSZLZHJYGXZTCNH4JUXU7W23MW5PBVM4OBMWRRVNEDROMIBUVQNAC R6SX4KIDZS4NBSGA4X255FVMNI5CKCRN3ZNSF6XTNFFTL4WVC3UAC D5QIOJGPKQJIYBUCSC3MFJ3TXLPNZ2XMI37GXMFRVRFWWR2VMTFAC 64K7R4Y6IE4HYE36LMENATBEHOGZ6RNSGJSIZFZGZOLJXM6RRMBAC JK2QWPH6EOQXGCADV7C5HSYRVWC5M53LAKVN26EMTLY65IKU3AEQC 7YBYT2LQML2PKEO6UO4444AGSASS664UCDXW2YO3ALB7THQHCEBQC IW2LHCLLCFC6CSM5BECJS3PN2LPBAM4ZJX6NHBZPIRUJTNWHG4EAC OG7BEM57MXPCG56IT5GODPFG77KZXWPXZ7OVZPWQQ56CRJ7KUE2QC AFTXA575C6JTVLVXTYJUKQGPLBO3NFORLO5XDSPHNL44HXLRH4TAC KA45EBF5GVBBFQ2E6GSMDJ5ORSOJ7YP5EHAHLUZB226F7WNO6KYQC 6KCP6ODPUDLR2VLWE6LAULMYKI3TWQYEQYZRTYQ4WQX2A5RT6XRQC QUTWJR7PQZ3DBPC4G2AFXOKPPGFZQLE5RLXHAOFTLMXIT2QPF4TQC CXRCPDSQEWHSZNCJIORUAINH5I2FFFQ7AVUQOB62REGROLROPE7QC YFPZ46YK4BOI6VH2H3F757UEGEYONURUAEDAYEIBLRY33PLSSO4AC RBHHV7P7MMFXUNWCJFNYKLGVLG2NQEDUKJ2IUCZ3WFMHH3SZRUHQC PMNWRTGJ4GVSMSSAWSUD57B26PCRAHMZIQ5SIWJIK7A74ENKEQLAC FHAVPTZ6GYCZMMPIJN2VPGBACK66NENWCFJMTAOW6464WNCJPVOQC HDMOHBZMWAVTOS6VJQ73ZVDXYRG26ES6T72GZCT6OOWVKM3LIUUQC HPEG2RHVNHOPB5T4ZRXANIRBMVOVY3B5GFETJRYOTDJFVAYH2TQAC LA27PR4UBZK63PDIOEBMYUBXM4BCW4QH42E2H4MRBNE657Q72LUAC A22P7HCOGNO3XEQWBNEG2VHTGUB2GKQ75Q6JDMPQNQCLFHE7XBFAC FYO6NECE4YJC76HQIG35NNJABODV7KNQKREK5YKZU6O2MNNSQTMAC WQXF2T3DFC2K72OVX46TUQ4IMZNJ5BSBQ7L7AVI7QL54DXCBEKLQC VPKMUFF3FHXEYFLWXYYXGGSCRKMO5TQNXE2ZGGT3YKBQ5HQPHVYAC 4R7OGJEYHBNKPETNWBZAGGM33MZ45DMIPEFFD5DZH32OE2KMOIPQC AJKTRRDJA6N5NZ7ZZNN6RQCLIJKOHQ5OF3QQFQMGKOM5MNIHEYPQC XZ7ZIKCVF7RQHIPBMQXL4JEYCXOQ6KSKLUMR7ATUXQILTHXDYPTAC 3BKF6P72K4YGWSQD5PO6PKNM3KXGFLONB3SONKRZR4DJHH3W3PSAC TULPZ62YXEHXUWGBZMLCLYILEXPQS5ADPT22574BIRFU4CZMBSKAC BOFOHCPK7UVE3TUEL4NNOQXN2EQGN6N3ITJWTCOJK5Q6MSHYSOSQC Y6AHH4THYQA43V77L43YM42DYRPCMDSWLUV4NKWAQYMPL4NTUIPQC WAZFSDSLS4XBU6I44LCEOCGGWDGAWJRBOO4QMPQHQSMPQIJDLVOAC KSD75RNJGFVVDHSKXPXWZAXPXAG623N3XN4FFLOVCYKF4KBXALNAC PY4WQF5GIMT46FAALDW3PR6JURGY56PJOGOPDZ6NIEADQ7GTWJTAC IS32JFKXL5BXWRTLUTE75X5GZRSIK3LM3ECQOKH53WIH7MRTRJGAC K7IRNVRFNKJ5GVY5BPZ2VRJCY4VRO75OXRYX4W2JFUPB7CVAON5AC ZCQOOAGYGHA2NYLVQOKDK2O7MDHDTVDQJ6FJZJ4KW6FGBNI7TNGAC NZYFWV6MZ4T47TM737C3DWQOBPSEWDWMCY6RZE65T4FPCZNTBLIAC 4IXVBLUICBCBNLPJ23NDC7UKEPFN53HWVNZXK5HR23JMZEM2GUBAC GAIBDEZZPZ52ASD3GK3WUYG3NOB27MLQ5GGIGKLAD6JQ4UATTT3AC package Hydra::Plugin::EmailNotification;use strict;use feature qw/switch/;use POSIX qw(strftime);use Email::Sender::Simple qw(sendmail);use Email::Sender::Transport::SMTP;use Email::Simple;use Email::Simple::Creator;use Sys::Hostname::Long;use Text::Table;use File::Slurp;use Hydra::Helper::Nix;sub statusDescription {my ($buildstatus) = @_;my $status = "Failed";given ($buildstatus) {when (0) { $status = "Success"; }when (1) { $status = "Failed with non-zero exit code"; }when (2) { $status = "Dependency failed"; }when (4) { $status = "Cancelled"; }}return $status;}sub buildFinished {my ($self, $db, $config, $build, $dependents) = @_;die unless $build->finished;my $prevBuild;($prevBuild) = $db->resultset('Builds')->search({ project => $build->project->name, jobset => $build->jobset->name, job => $build->job->name, system => $build->system, finished => 1, id => { '<', $build->id }, -not => { buildstatus => { -in => [4, 3]} }}, { order_by => ["id DESC"] });# Do we want to send mail?unless ($ENV{'HYDRA_FORCE_SEND_MAIL'}) {return unless $build->jobset->enableemail && ($build->maintainers ne "" || $build->jobset->emailoverride ne "");# If build is cancelled or aborted, do not send email.return if $build->buildstatus == 4 || $build->buildstatus == 3;# If there is a previous (that is not cancelled or aborted) build# with same buildstatus, do not send email.return if defined $prevBuild && ($build->buildstatus == $prevBuild->buildstatus);}# Send mail.# !!! should use the Template Toolkit here.my $to = (!$build->jobset->emailoverride eq "") ? $build->jobset->emailoverride : $build->maintainers;print STDERR "sending mail notification to ", $to, "\n";my $jobName = $build->project->name . ":" . $build->jobset->name . ":" . $build->job->name;my $status = statusDescription($build->buildstatus);my $baseurl = hostname_long;my $sender = $config->{'notification_sender'} ||(($ENV{'USER'} || "hydra") . "@" . $baseurl);my $selfURI = $config->{'base_uri'} || "http://localhost:3000";sub showTime { my ($x) = @_; return strftime('%Y-%m-%d %H:%M:%S', localtime($x)); }my $infoTable = Text::Table->new({ align => "left" }, \ " | ", { align => "left" });my @lines = ([ "Build ID:", $build->id ],[ "Nix name:", $build->nixname ],[ "Short description:", $build->description || '(not given)' ],[ "Maintainer(s):", $build->maintainers ],[ "System:", $build->system ],[ "Derivation store path:", $build->drvpath ],[ "Output store path:", join(", ", map { $_->path } $build->buildoutputs) ],[ "Time added:", showTime $build->timestamp ],);push @lines, ([ "Build started:", showTime $build->starttime ],[ "Build finished:", showTime $build->stoptime ],[ "Duration:", $build->stoptime - $build->starttime . "s" ],) if $build->starttime;$infoTable->load(@lines);my $inputsTable = Text::Table->new({ title => "Name", align => "left" }, \ " | ",{ title => "Type", align => "left" }, \ " | ",{ title => "Value", align => "left" });@lines = ();foreach my $input ($build->inputs) {my $type = $input->type;push @lines,[ $input->name, $input->type, ( $input->type eq "build" || $input->type eq "sysbuild")? $input->dependency->id: ($input->type eq "string" || $input->type eq "boolean")? $input->value : ($input->uri . ':' . $input->revision)];}$inputsTable->load(@lines);my $loglines = 50;my $logtext = logContents($build->drvpath, $loglines);$logtext = removeAsciiEscapes($logtext);my $body = "Hi,\n". "\n". "This is to let you know that Hydra build " . $build->id. " of job " . $jobName . " " . (defined $prevBuild ? "has changed from '" . statusDescription($prevBuild->buildstatus) . "' to '$status'" : "is '$status'" ) .".\n". "\n". "Complete build information can be found on this page: ". "$selfURI/build/" . $build->id . "\n". ($build->buildstatus != 0 ? "\nThe last $loglines lines of the build log are shown at the bottom of this email.\n" : ""). "\n". "A summary of the build information follows:\n". "\n". $infoTable->body. "\n". "The build inputs were:\n". "\n". $inputsTable->title. $inputsTable->rule('-', '+'). $inputsTable->body. "\n". "Regards,\n\nThe Hydra build daemon.\n". ($build->buildstatus != 0 ? "\n---\n$logtext" : "");# stripping trailing spaces from lines$body =~ s/[\ ]+$//gm;my $email = Email::Simple->create(header => [To => $to,From => "Hydra Build Daemon <$sender>",Subject => "$status: Hydra job $jobName on " . $build->system . ", build " . $build->id,'X-Hydra-Instance' => $baseurl,'X-Hydra-Project' => $build->project->name,'X-Hydra-Jobset' => $build->jobset->name,'X-Hydra-Job' => $build->job->name,'X-Hydra-System' => $build->system],body => "",);$email->body_set($body);if (defined $ENV{'HYDRA_MAIL_SINK'}) {# For testing, redirect all mail to a file.write_file($ENV{'HYDRA_MAIL_SINK'}, { append => 1 }, $email->as_string . "\n");} else {sendmail($email);}}1;
package Hydra::Plugin;use Module::Pluggablesearch_path => "Hydra::Plugin",require => 1;# $plugin->buildFinished($db, $config, $build, $dependents):## Called when build $build has finished. If the build failed, then# $dependents is an array ref to a list of builds that have also# failed as a result (i.e. because they depend on $build or a failed# dependeny of $build).1;
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;use Text::Table;use POSIX qw(strftime);use Data::Dump qw(dump);use feature qw/switch/;
sub statusDescription {my ($buildstatus) = @_;my $status = "Failed";given ($buildstatus) {when (0) { $status = "Success"; }when (1) { $status = "Failed with non-zero exit code"; }when (2) { $status = "Dependency failed"; }when (4) { $status = "Cancelled"; }}return $status;}sub sendEmailNotification {my ($build) = @_;die unless $build->finished;return unless $build->jobset->enableemail && ($build->maintainers ne "" || $build->jobset->emailoverride ne "");# Do we want to send mail?my $prevBuild;($prevBuild) = $db->resultset('Builds')->search({ project => $build->project->name, jobset => $build->jobset->name, job => $build->job->name, system => $build->system, finished => 1, id => { '<', $build->id }, -not => { buildstatus => { -in => [4, 3]} }}, { order_by => ["id DESC"] });# If build is cancelled or aborted, do not send email.return if $build->buildstatus == 4 || $build->buildstatus == 3;# If there is a previous (that is not cancelled or aborted) build# with same buildstatus, do not send email.return if defined $prevBuild && ($build->buildstatus == $prevBuild->buildstatus);# 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 = statusDescription($build->buildstatus);my $baseurl = hostname_long;my $sender = $config->{'notification_sender'} ||(($ENV{'USER'} || "hydra") . "@" . $baseurl);my $selfURI = $config->{'base_uri'} || "http://localhost:3000";sub showTime { my ($x) = @_; return strftime('%Y-%m-%d %H:%M:%S', localtime($x)); }my $infoTable = Text::Table->new({ align => "left" }, \ " | ", { align => "left" });my @lines = ([ "Build ID:", $build->id ],[ "Nix name:", $build->nixname ],[ "Short description:", $build->description || '(not given)' ],[ "Maintainer(s):", $build->maintainers ],[ "System:", $build->system ],[ "Derivation store path:", $build->drvpath ],[ "Output store path:", join(", ", map { $_->path } $build->buildoutputs) ],[ "Time added:", showTime $build->timestamp ],);push @lines, ([ "Build started:", showTime $build->starttime ],[ "Build finished:", showTime $build->stoptime ],[ "Duration:", $build->stoptime - $build->starttime . "s" ],) if $build->starttime;$infoTable->load(@lines);
my $inputsTable = Text::Table->new({ title => "Name", align => "left" }, \ " | ",{ title => "Type", align => "left" }, \ " | ",{ title => "Value", align => "left" });@lines = ();foreach my $input ($build->inputs) {my $type = $input->type;push @lines,[ $input->name, $input->type, ( $input->type eq "build" || $input->type eq "sysbuild")? $input->dependency->id: ($input->type eq "string" || $input->type eq "boolean")? $input->value : ($input->uri . ':' . $input->revision)];}$inputsTable->load(@lines);
my $loglines = 50;my $logtext = logContents($build->drvpath, $loglines);$logtext = removeAsciiEscapes($logtext);my $body = "Hi,\n". "\n". "This is to let you know that Hydra build " . $build->id. " of job " . $jobName . " " . (defined $prevBuild ? "has changed from '" . statusDescription($prevBuild->buildstatus) . "' to '$status'" : "is '$status'" ) .".\n". "\n". "Complete build information can be found on this page: ". "$selfURI/build/" . $build->id . "\n". ($build->buildstatus != 0 ? "\nThe last $loglines lines of the build log are shown at the bottom of this email.\n" : ""). "\n". "A summary of the build information follows:\n". "\n". $infoTable->body. "\n". "The build inputs were:\n". "\n". $inputsTable->title. $inputsTable->rule('-', '+'). $inputsTable->body. "\n". "Regards,\n\nThe Hydra build daemon.\n". ($build->buildstatus != 0 ? "\n---\n$logtext" : "");# stripping trailing spaces from lines$body =~ s/[\ ]+$//gm;my $to = (!$build->jobset->emailoverride eq "") ? $build->jobset->emailoverride : $build->maintainers;my $email = Email::Simple->create(header => [To => $to,From => "Hydra Build Daemon <$sender>",Subject => "$status: Hydra job $jobName on " . $build->system . ", build " . $build->id,'X-Hydra-Instance' => $baseurl,'X-Hydra-Project' => $build->project->name,'X-Hydra-Jobset' => $build->jobset->name,'X-Hydra-Job' => $build->job->name,'X-Hydra-System' => $build->system],body => "",);$email->body_set($body);print $email->as_string if $ENV{'HYDRA_MAIL_TEST'};sendmail($email);}