The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Test::Continuous::Notifier;
use YAML;

sub send_notify {
    my (undef, $msg) = @_;

    open my $fh, ">>", $ENV{PERL_TEST_CONTINUOUS_TEST_NOTIFY_OUTPUT}
        or die "Fail storing notification: $!";

    print $fh YAML::Dump($msg);

    close($fh);
}

1;