diff options
-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': |