diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-11-01 00:57:50 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-11-01 00:57:50 +0100 |
commit | 305f909108c9971047b11e722f8fcda5160f6f7d (patch) | |
tree | f52d95c5225c66bc9b2c5c1f52e88e37788e09f4 /job-cfg | |
parent | a9456a813af95b69f90d6db5028f6be45058dec8 (diff) | |
download | jenkins.debian.net-305f909108c9971047b11e722f8fcda5160f6f7d.tar.xz |
no {VARIABLE}s in job-config .yaml files
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/chroot-installation.yaml.py | 2 | ||||
-rw-r--r-- | job-cfg/d-i-overview.yaml.py | 2 | ||||
-rw-r--r-- | job-cfg/g-i-installation.yaml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py index c21c88c9..af5ece56 100755 --- a/job-cfg/chroot-installation.yaml.py +++ b/job-cfg/chroot-installation.yaml.py @@ -158,7 +158,7 @@ print(""" fixed: true subject: 'Jenkins: $BUILD_STATUS for $JOB_NAME/$BUILD_NUMBER' attach-build-log: true - body: 'See $BUILD_URL and ${BUILD_URL}console' + body: 'See $BUILD_URL and $BUILD_URL/console' properties: - sidebar: url: https://jenkins.debian.net/userContent/about.html diff --git a/job-cfg/d-i-overview.yaml.py b/job-cfg/d-i-overview.yaml.py index 81b3134e..d849890c 100644 --- a/job-cfg/d-i-overview.yaml.py +++ b/job-cfg/d-i-overview.yaml.py @@ -61,7 +61,7 @@ for arch in sorted(archs): fixed: true subject: 'Jenkins: $BUILD_STATUS for $JOB_NAME/$BUILD_NUMBER' attach-build-log: true - body: 'See http://d-i.debian.org/daily-images/daily-build-overview.html#%(arch)s' or $BUILD_URL and ${BUILD_URL}console' + body: 'See http://d-i.debian.org/daily-images/daily-build-overview.html#%(arch)s or $BUILD_URL and $BUILD_URL/console' """ % dict(arch=arch)) print(""" diff --git a/job-cfg/g-i-installation.yaml b/job-cfg/g-i-installation.yaml index 4c00c1d1..da4a811c 100644 --- a/job-cfg/g-i-installation.yaml +++ b/job-cfg/g-i-installation.yaml @@ -22,7 +22,7 @@ fixed: true subject: 'Jenkins: $BUILD_STATUS for $JOB_NAME/$BUILD_NUMBER' attach-build-log: true - body: 'See $BUILD_URL and ${BUILD_URL}console and ${BUILD_URL}artifact/results/ if there are any.' + body: 'See $BUILD_URL and $BUILD_URL/console and $BUILD_URL/artifact/results/ if there are any.' - archive: artifacts: 'results/*.*, results/log/*, results/log/installer/*' latest_only: false |