summaryrefslogtreecommitdiffstats
path: root/job-cfg/rebootstrap.yaml.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2015-08-22 00:52:48 +0200
committerHelmut Grohne <helmut@subdivi.de>2015-08-22 00:52:48 +0200
commite7ee301790c725eb8a5f65b982787af89155d349 (patch)
treedc1b209a627dc717a8072093a88420b2e0c7f042 /job-cfg/rebootstrap.yaml.py
parent5701953f86a61aff1bd87f4029a1f498608a08fd (diff)
downloadjenkins.debian.net-e7ee301790c725eb8a5f65b982787af89155d349.tar.xz
rebootstrap: try bootstrapping kfreebsd as well
Diffstat (limited to 'job-cfg/rebootstrap.yaml.py')
-rwxr-xr-xjob-cfg/rebootstrap.yaml.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py
index f31ddaed..162beb8f 100755
--- a/job-cfg/rebootstrap.yaml.py
+++ b/job-cfg/rebootstrap.yaml.py
@@ -1,7 +1,8 @@
#!/usr/bin/python
architectures = """
- i386
+ kfreebsd-amd64
+ i386 kfreebsd-i386
mips mips64el mipsel
powerpc ppc64
s390x
@@ -10,7 +11,7 @@ architectures = """
""".split()
mono_architectures = """
- armel armhf musl-linux-armhf arm64 hurd-amd64 musl-linux-arm64
+ armel armhf kfreebsd-armhf musl-linux-armhf arm64 hurd-amd64 musl-linux-arm64
alpha
hppa
hurd-i386 musl-linux-i386
@@ -90,7 +91,7 @@ for arch in sorted(architectures):
if nobiarch and arch in mono_architectures:
continue
for supported in ["", "_supported"]:
- if (nobiarch or arch.startswith("musl-linux-") or arch.startswith("hurd-")) and supported:
+ if (nobiarch or arch.startswith("musl-linux-") or arch.startswith("hurd-") or arch.startswith("kfreebsd-")) and supported:
continue
for debbindiff in ["", "_debbindiff"]:
if debbindiff and (arch not in release_architectures or gccver not in debbindiff_gcc_versions):
@@ -112,7 +113,7 @@ for arch in sorted(architectures):
if nobiarch and arch in mono_architectures:
continue
for supported in (False, True):
- if (nobiarch or arch.startswith("musl-linux-") or arch.startswith("hurd-")) and supported:
+ if (nobiarch or arch.startswith("musl-linux-") or arch.startswith("hurd-") or arch.startswith("kfreebsd-")) and supported:
continue
for debbindiff in (False, True):
if debbindiff and (arch not in release_architectures or gccver not in debbindiff_gcc_versions):