diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-12-14 14:25:34 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-12-14 14:25:34 +0100 |
commit | db25777a302c07b79dc0e9536a70bc256dc8aea0 (patch) | |
tree | b6aa2ad8b7b92aa1fd38970f411f9df5d181dc58 | |
parent | ad5ef8f4c2120ff07f157fe2026000d75238064f (diff) | |
download | jenkins.debian.net-db25777a302c07b79dc0e9536a70bc256dc8aea0.tar.xz |
order of publishers seems to matter, first parse logs, then send mails
-rw-r--r-- | job-cfg/haskell-package-plan.yaml | 4 | ||||
-rwxr-xr-x | job-cfg/rebootstrap.yaml.py | 4 | ||||
-rw-r--r-- | job-cfg/reproducible.yaml | 14 | ||||
-rw-r--r-- | job-cfg/udd.yaml | 4 |
4 files changed, 13 insertions, 13 deletions
diff --git a/job-cfg/haskell-package-plan.yaml b/job-cfg/haskell-package-plan.yaml index 0aa4442b..de34c60a 100644 --- a/job-cfg/haskell-package-plan.yaml +++ b/job-cfg/haskell-package-plan.yaml @@ -23,12 +23,12 @@ builders: - shell: '/srv/jenkins/bin/chroot-run.sh {my_distro} "apt-get --no-install-recommends -y install {my_pkgs}; {my_shell}"' publishers: - - email: - recipients: '{my_recipients}' - logparser: parse-rules: '/srv/jenkins/logparse/haskell-package-plan.rules' unstable-on-warning: 'false' fail-on-error: 'false' + - email: + recipients: '{my_recipients}' - plot: - title: Stats yaxis: Packages diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py index fbf7e83c..08b4bb90 100755 --- a/job-cfg/rebootstrap.yaml.py +++ b/job-cfg/rebootstrap.yaml.py @@ -63,12 +63,12 @@ print(""" builders: - shell: '/srv/jenkins/bin/chroot-run.sh sid minimal ./bootstrap.sh HOST_ARCH={my_arch} {my_params}' publishers: - - email: - recipients: 'jenkins+debian-bootstrap helmutg@debian.org' - logparser: parse-rules: '/srv/jenkins/logparse/rebootstrap.rules' unstable-on-warning: 'false' fail-on-error: 'false' + - email: + recipients: 'jenkins+debian-bootstrap helmutg@debian.org' triggers: - pollscm: '*/6 * * * *' """) diff --git a/job-cfg/reproducible.yaml b/job-cfg/reproducible.yaml index cc62af14..e7e2628d 100644 --- a/job-cfg/reproducible.yaml +++ b/job-cfg/reproducible.yaml @@ -25,12 +25,12 @@ builders: - shell: '{my_shell}' publishers: - - email: - recipients: '{my_recipients}' - logparser: parse-rules: '/srv/jenkins/logparse/reproducible.rules' unstable-on-warning: 'true' fail-on-error: 'true' + - email: + recipients: '{my_recipients}' - defaults: name: reproducible_notes @@ -60,12 +60,12 @@ builders: - shell: '{my_shell}' publishers: - - email: - recipients: '{my_recipients}' - logparser: parse-rules: '/srv/jenkins/logparse/reproducible.rules' unstable-on-warning: 'true' fail-on-error: 'true' + - email: + recipients: '{my_recipients}' scm: - git: url: '{my_gitrepo}' @@ -108,13 +108,13 @@ builders: - shell: '{my_shell}' publishers: - - email: - recipients: '{my_recipients}' - notify-every-unstable-build: false - logparser: parse-rules: '/srv/jenkins/logparse/reproducible.rules' unstable-on-warning: 'true' fail-on-error: 'true' + - email: + recipients: '{my_recipients}' + notify-every-unstable-build: false - job-template: defaults: reproducible diff --git a/job-cfg/udd.yaml b/job-cfg/udd.yaml index 49e6cc94..7e6398c7 100644 --- a/job-cfg/udd.yaml +++ b/job-cfg/udd.yaml @@ -21,12 +21,12 @@ artifactDaysToKeep: -1 artifactNumToKeep: -1 publishers: - - email: - recipients: 'jenkins+debian-qa holger@layer-acht.org' - logparser: parse-rules: '/srv/jenkins/logparse/debian.rules' unstable-on-warning: 'true' fail-on-error: 'true' + - email: + recipients: 'jenkins+debian-qa holger@layer-acht.org' builders: - shell: '/srv/jenkins/bin/udd-query.sh {my_params}' triggers: |