diff options
Diffstat (limited to 'job-cfg/rebootstrap.yaml.py')
-rwxr-xr-x | job-cfg/rebootstrap.yaml.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py index 4f879846..60a370a3 100755 --- a/job-cfg/rebootstrap.yaml.py +++ b/job-cfg/rebootstrap.yaml.py @@ -87,6 +87,8 @@ for arch in sorted(architectures): if nobiarch and arch in mono_architectures: continue for supported in ["", "_supported"]: + if nobiarch and supported: + continue for debbindiff in ["", "_debbindiff"]: if debbindiff and arch not in release_architectures: continue @@ -107,6 +109,8 @@ for arch in sorted(architectures): if nobiarch and arch in mono_architectures: continue for supported in (False, True): + if nobiarch and supported: + continue for debbindiff in (False, True): if debbindiff and arch not in release_architectures: continue |