diff options
author | Philip Hands <phil@hands.com> | 2015-08-03 15:53:48 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-03 17:01:22 +0200 |
commit | f761fa14f0eec450bc42b9524d2e106bd0772c00 (patch) | |
tree | 1914672b9a1ea169786c64bece8aed757f0179b6 /job-cfg | |
parent | ee814d3e47e0322b75c8f3134805a11ad84ea80b (diff) | |
download | jenkins.debian.net-f761fa14f0eec450bc42b9524d2e106bd0772c00.tar.xz |
disable irc notifications for d-i_build* jobs due to gcc5 transition
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/d-i.yaml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/job-cfg/d-i.yaml.py b/job-cfg/d-i.yaml.py index 15b7fa1d..35352550 100755 --- a/job-cfg/d-i.yaml.py +++ b/job-cfg/d-i.yaml.py @@ -324,8 +324,8 @@ data.extend( 'logrotate': lr(90), 'publishers': publ(irc=irc)}} for (n,bdsc,br,trg,irc) - in [('d-i-build', 'master branch', 'origin/master', 'H/6 * * * *', 'debian-boot'), - ('d-i-pu-build', 'pu/ branches', 'origin/pu/**' , 'H/10 * * * *', 'debian-boot')]]) + in [('d-i-build', 'master branch', 'origin/master', 'H/6 * * * *', None), # irc should be 'debian-boot' but disabled due to gcc5 transition + ('d-i-pu-build', 'pu/ branches', 'origin/pu/**' , 'H/10 * * * *', None)]]) # same data.append( jobspec_svn(key='job-template', |