diff options
author | makefu <makefu@nixos.dev> | 2015-12-16 17:58:29 +0100 |
---|---|---|
committer | makefu <makefu@nixos.dev> | 2015-12-16 17:58:29 +0100 |
commit | 956d2091ec2ba931080ee8a09f12f5c645fbf672 (patch) | |
tree | d852b2fd40400019ae833a39661b0b724bb71162 | |
parent | 20d9a610189da29cd1f4abf60089d0579a1e291a (diff) |
m 3 buildbot.master: only alert on state change
-rw-r--r-- | makefu/3modules/buildbot/master.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/makefu/3modules/buildbot/master.nix b/makefu/3modules/buildbot/master.nix index 1a9ef4db6..58e2f8175 100644 --- a/makefu/3modules/buildbot/master.nix +++ b/makefu/3modules/buildbot/master.nix @@ -6,6 +6,7 @@ let buildbot-master-config = pkgs.writeText "buildbot-master.cfg" '' # -*- python -*- from buildbot.plugins import * + import re c = BuildmasterConfig = {} @@ -43,7 +44,6 @@ let # files everyone depends on or are part of the share branch def shared_files(change): - import re r =re.compile("^((krebs|share)/.*|Makefile|default.nix)") for file in change.files: if r.match(file): @@ -119,8 +119,8 @@ let # TODO: multiple channels channels=["${cfg.irc.channel}"], notify_events={ - 'success': 1, - 'failure': 1, + #'success': 1, + #'failure': 1, 'exception': 1, 'successToFailure': 1, 'failureToSuccess': 1, |