diff options
author | Helmut Grohne <helmut@subdivi.de> | 2015-01-31 17:50:26 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2015-01-31 17:50:26 +0100 |
commit | b33815751e8aa52aa852ad26e48bfb0f42fb8891 (patch) | |
tree | 17b5a12c62aea84d728cc527e0cabedba5ef182e | |
parent | 4282dfda3f8c9110bd9af567daddec8deb40a1c8 (diff) | |
download | jenkins.debian.net-b33815751e8aa52aa852ad26e48bfb0f42fb8891.tar.xz |
rebootstrap: remove useless combinations
The combination of "supported" and "nobiarch" is doomed to always fail,
as nobiarch simply is unsupported.
This commit removes the following jenkins jobs:
jenkins_hppa_gcc49_nobiarch_supported
jenkins_i386_gcc49_nobiarch_supported
jenkins_i386_gcc49_nobiarch_supported_debbindiff
jenkins_mips_gcc49_nobiarch_supported
jenkins_mips_gcc49_nobiarch_supported_debbindiff
jenkins_mips64el_gcc49_nobiarch_supported
jenkins_mipsel_gcc49_nobiarch_supported
jenkins_mipsel_gcc49_nobiarch_supported_debbindiff
jenkins_powerpc_gcc49_nobiarch_supported
jenkins_powerpc_gcc49_nobiarch_supported_debbindiff
jenkins_ppc64_gcc49_nobiarch_supported
jenkins_s390x_gcc49_nobiarch_supported
jenkins_s390x_gcc49_nobiarch_supported_debbindiff
jenkins_sparc_gcc49_nobiarch_supported
jenkins_sparc64_gcc49_nobiarch_supported
jenkins_x32_gcc49_nobiarch_supported
-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 |