Eelco Dolstra 1d8bb0764b Add a plugin mechanism
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;
2013-05-08 17:30:30 +02:00
2013-05-03 16:39:17 +02:00
2013-05-08 17:30:30 +02:00
2013-03-29 01:34:59 +01:00
2013-04-26 17:51:05 +02:00
2011-01-14 10:52:47 +00:00
2013-03-04 12:16:13 +01:00
2010-03-29 14:16:46 +00:00
2013-05-03 18:33:11 +02:00
2010-09-30 14:29:15 +00:00
2013-01-22 12:05:47 +01:00
2013-04-12 01:24:16 +02:00
Description
No description provided
18 MiB
Languages
Perl 70.5%
C++ 15.5%
Nix 6%
PLpgSQL 3%
Shell 2.3%
Other 2.6%