forked from lix-project/hydra
1d8bb0764b
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; |
||
---|---|---|
.. | ||
c | ||
lib | ||
root | ||
script | ||
sql | ||
ttf | ||
xsl | ||
Makefile.am | ||
Makefile.PL |