diff options
author | Helmut Grohne <helmut@subdivi.de> | 2015-08-03 15:39:42 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2015-08-03 15:39:42 +0200 |
commit | 3cfe5434ec422a0c282647a8f680504606f30743 (patch) | |
tree | 913dc84b4035feda0417b1aae9ccd0f4cb481c0f /job-cfg | |
parent | 86872a89f44926c87de3d8e058ca72d711316a31 (diff) | |
download | jenkins.debian.net-3cfe5434ec422a0c282647a8f680504606f30743.tar.xz |
rebootstrap: add debbindiff jobs for gcc-5
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/rebootstrap.yaml.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py index 96545315..7e4e096c 100755 --- a/job-cfg/rebootstrap.yaml.py +++ b/job-cfg/rebootstrap.yaml.py @@ -32,6 +32,7 @@ release_architectures = """ architectures += mono_architectures gcc_versions = """4.9 5""".split() +debbindiff_gcc_versions = "4.9 5".split() print(""" - defaults: @@ -92,7 +93,7 @@ for arch in sorted(architectures): if (nobiarch or arch.startswith("musl-linux-")) and supported: continue for debbindiff in ["", "_debbindiff"]: - if debbindiff and (arch not in release_architectures or gccver != "4.9"): + if debbindiff and (arch not in release_architectures or gccver not in debbindiff_gcc_versions): continue print(""" - job-template: @@ -114,7 +115,7 @@ for arch in sorted(architectures): if (nobiarch or arch.startswith("musl-linux-")) and supported: continue for debbindiff in (False, True): - if debbindiff and (arch not in release_architectures or gccver != "4.9"): + if debbindiff and (arch not in release_architectures or gccver not in debbindiff_gcc_versions): continue print( """ - '{name}_%(suffix)s': |