hydra-notify: respond to cached_build_queued

This commit is contained in:
Graham Christensen
2022-01-10 20:23:48 -05:00
parent 6b7f1da11e
commit 42edd3a9d8
6 changed files with 186 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ package Hydra::Event;
use strict;
use warnings;
use Hydra::Event::CachedBuildFinished;
use Hydra::Event::CachedBuildQueued;
use Hydra::Event::BuildFinished;
use Hydra::Event::BuildQueued;
use Hydra::Event::BuildStarted;
@@ -14,6 +15,7 @@ my %channels_to_events = (
step_finished => \&Hydra::Event::StepFinished::parse,
build_finished => \&Hydra::Event::BuildFinished::parse,
cached_build_finished => \&Hydra::Event::CachedBuildFinished::parse,
cached_build_queued => \&Hydra::Event::CachedBuildQueued::parse,
);