diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-09-13 16:03:33 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-09-13 16:03:33 +0200 |
commit | 4b14a85d1f484958e0dbbfd05cd275b819d92618 (patch) | |
tree | 85676533da6e0985a647d5b499e78de3536138a9 /job-cfg | |
parent | 82fca1a61abb59096650f25934b7c53761dd171b (diff) | |
download | jenkins.debian.net-4b14a85d1f484958e0dbbfd05cd275b819d92618.tar.xz |
chroot-installs: only notify on 2nd failures (to avoid notification on temp. failures)
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/chroot-installation.yaml.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py index ac60c269..5aa06aec 100755 --- a/job-cfg/chroot-installation.yaml.py +++ b/job-cfg/chroot-installation.yaml.py @@ -267,7 +267,8 @@ data.append( 'publishers': [ { 'trigger': { 'project': '{my_trigger}'}}, { 'email-ext': { 'attach-build-log': False, 'body': 'See $BUILD_URL/console or just $BUILD_URL for more information.', - 'first-failure': True, + 'first-failure': False, + 'second-failure': True, 'failure': False, 'fixed': True, 'recipients': '{my_recipients}', |