diff options
author | Helmut Grohne <helmut@subdivi.de> | 2015-02-28 10:13:21 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2015-02-28 10:13:21 +0100 |
commit | aee6e1dd695802c69e01db86fd9b47f45d24304c (patch) | |
tree | 0a7470d1ae314c2d2f296ded6beace4f20ca8ace /job-cfg | |
parent | 8f5e1b1020e60d89866bf962402259ca831a1a90 (diff) | |
download | jenkins.debian.net-aee6e1dd695802c69e01db86fd9b47f45d24304c.tar.xz |
rebootstrap: add gcc-5 jobs
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/rebootstrap.yaml.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py index 60a370a3..e86102a2 100755 --- a/job-cfg/rebootstrap.yaml.py +++ b/job-cfg/rebootstrap.yaml.py @@ -29,7 +29,7 @@ release_architectures = """ architectures += mono_architectures -gcc_versions = """4.9""".split() +gcc_versions = """4.9 5""".split() print(""" - defaults: @@ -90,7 +90,7 @@ for arch in sorted(architectures): if nobiarch and supported: continue for debbindiff in ["", "_debbindiff"]: - if debbindiff and arch not in release_architectures: + if debbindiff and (arch not in release_architectures or gccver != "4.9"): continue print(""" - job-template: @@ -112,7 +112,7 @@ for arch in sorted(architectures): if nobiarch and supported: continue for debbindiff in (False, True): - if debbindiff and arch not in release_architectures: + if debbindiff and (arch not in release_architectures or gccver != "4.9"): continue print( """ - '{name}_%(suffix)s': |