summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xjob-cfg/d-i.yaml.py4
-rw-r--r--job-cfg/debsums-tests.yaml3
-rw-r--r--job-cfg/edu-packages.yaml3
-rw-r--r--job-cfg/haskell-package-plan.yaml3
-rw-r--r--job-cfg/lintian-tests.yaml3
-rw-r--r--job-cfg/piuparts.yaml3
-rwxr-xr-xjob-cfg/rebootstrap.yaml.py3
-rw-r--r--job-cfg/reproducible.yaml6
-rw-r--r--job-cfg/torbrowser-launcher.yaml3
9 files changed, 20 insertions, 11 deletions
diff --git a/job-cfg/d-i.yaml.py b/job-cfg/d-i.yaml.py
index 20e2f581..43450e5c 100755
--- a/job-cfg/d-i.yaml.py
+++ b/job-cfg/d-i.yaml.py
@@ -298,7 +298,7 @@ def jobspec_svn(key, name, desc, defaults=None,
if defaults is not None:
j['defaults'] = defaults
if trigger is not None:
- j['triggers'] = [{'pollscm': trigger}]
+ j['triggers'] = [{'pollscm': {'cron': trigger}}]
if logkeep is not None:
j['logrotate'] = lr(logkeep)
return {key: j}
@@ -339,7 +339,7 @@ data.extend(
'description': ('Builds debian packages in sid from git {branchdesc}, '
'triggered by pushes to <pre>{gitrepo}</pre> '
'{do_not_edit}'),
- 'triggers': [{'pollscm': '{trg}'}],
+ 'triggers': [{'pollscm': {'cron': '{trg}'}}],
'scm': [{'git': {'url': '{gitrepo}',
'branches': ['{branch}']}}],
'builders': [{'shell': '/srv/jenkins/bin/d-i_build.sh'}],
diff --git a/job-cfg/debsums-tests.yaml b/job-cfg/debsums-tests.yaml
index cd12226d..73a2c0bc 100644
--- a/job-cfg/debsums-tests.yaml
+++ b/job-cfg/debsums-tests.yaml
@@ -48,7 +48,8 @@
defaults: debsums-tests
name: '{name}_sid'
triggers:
- - pollscm: '*/6 * * * *'
+ - pollscm:
+ cron: '*/6 * * * *'
publishers:
- email:
recipients: 'jenkins+debian-qa qa-jenkins-scm@lists.alioth.debian.org pkg-perl-maintainers@lists.alioth.debian.org'
diff --git a/job-cfg/edu-packages.yaml b/job-cfg/edu-packages.yaml
index 725fa51d..f20c4b3c 100644
--- a/job-cfg/edu-packages.yaml
+++ b/job-cfg/edu-packages.yaml
@@ -28,7 +28,8 @@
builders:
- shell: '/srv/jenkins/bin/chroot-run.sh {my_distro} debuild -b -uc -us'
triggers:
- - pollscm: '*/6 * * * *'
+ - pollscm:
+ cron: '*/6 * * * *'
publishers:
- email:
recipients: 'jenkins+debian-edu debian-edu-commits@lists.alioth.debian.org'
diff --git a/job-cfg/haskell-package-plan.yaml b/job-cfg/haskell-package-plan.yaml
index de6bc548..7b2bfedf 100644
--- a/job-cfg/haskell-package-plan.yaml
+++ b/job-cfg/haskell-package-plan.yaml
@@ -58,7 +58,8 @@
defaults: haskell-package-plan
name: '{name}'
triggers:
- - pollscm: '*/6 * * * *'
+ - pollscm:
+ cron: '*/6 * * * *'
- timed: '0 16 * * *' # every day at 16:00 UTC
- project:
diff --git a/job-cfg/lintian-tests.yaml b/job-cfg/lintian-tests.yaml
index 8e6450c1..13be2b34 100644
--- a/job-cfg/lintian-tests.yaml
+++ b/job-cfg/lintian-tests.yaml
@@ -58,7 +58,8 @@
defaults: lintian-tests
name: '{name}_sid'
triggers:
- - pollscm: '*/6 * * * *'
+ - pollscm:
+ cron: '*/6 * * * *'
publishers:
- email:
recipients: 'jenkins+debian-qa qa-jenkins-scm@lists.alioth.debian.org lintian-maint@debian.org'
diff --git a/job-cfg/piuparts.yaml b/job-cfg/piuparts.yaml
index ff14012b..337b8993 100644
--- a/job-cfg/piuparts.yaml
+++ b/job-cfg/piuparts.yaml
@@ -52,7 +52,8 @@
defaults: piuparts
name: '{name}_testsuite_sid'
triggers:
- - pollscm: '*/6 * * * *'
+ - pollscm:
+ cron: '*/6 * * * *'
publishers:
- email:
recipients: 'jenkins+debian-qa qa-jenkins-scm@lists.alioth.debian.org piuparts-devel@lists.alioth.debian.org'
diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py
index 23ec5eda..39de2fec 100755
--- a/job-cfg/rebootstrap.yaml.py
+++ b/job-cfg/rebootstrap.yaml.py
@@ -83,7 +83,8 @@ print("""
- email:
recipients: 'jenkins+debian-bootstrap helmutg@debian.org'
triggers:
- - pollscm: '*/6 * * * *'
+ - pollscm:
+ cron: '*/6 * * * *'
node: '{my_node}'
""")
diff --git a/job-cfg/reproducible.yaml b/job-cfg/reproducible.yaml
index 10d54315..90cd218c 100644
--- a/job-cfg/reproducible.yaml
+++ b/job-cfg/reproducible.yaml
@@ -43,7 +43,8 @@
description: *desc
triggers:
- timed: '{my_timed}'
- - pollscm: '*/6 * * * *'
+ - pollscm:
+ cron: '*/6 * * * *'
logrotate:
daysToKeep: 90
numToKeep: 20
@@ -186,7 +187,8 @@
- reproducible # no special category yet
triggers:
- timed: '{my_timed}'
- - pollscm: '*/6 * * * *'
+ - pollscm:
+ cron: '*/6 * * * *'
logrotate:
daysToKeep: 90
numToKeep: 30
diff --git a/job-cfg/torbrowser-launcher.yaml b/job-cfg/torbrowser-launcher.yaml
index db2200b9..e4cae154 100644
--- a/job-cfg/torbrowser-launcher.yaml
+++ b/job-cfg/torbrowser-launcher.yaml
@@ -38,7 +38,8 @@
name: torbrowser-launcher_git
project-type: freestyle
triggers:
- - pollscm: '*/6 * * * *'
+ - pollscm:
+ cron: '*/6 * * * *'
- timed: '{my_timed}'
sb_desc: torbrowser-launcher
properties: