summaryrefslogtreecommitdiffstats
path: root/job-cfg/rebootstrap.yaml.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2015-04-18 08:47:11 +0200
committerHelmut Grohne <helmut@subdivi.de>2015-04-18 08:47:11 +0200
commitbc99b1b96647a5e71889cf712b38cfb325d4cf4e (patch)
tree2c0a9cc7dcc072800323e964971ed99d2735a6a4 /job-cfg/rebootstrap.yaml.py
parent9753096ba082891d0d52ef56ac8da7a38adb8d29 (diff)
downloadjenkins.debian.net-bc99b1b96647a5e71889cf712b38cfb325d4cf4e.tar.xz
reboostrap: enable musl architectures
Diffstat (limited to 'job-cfg/rebootstrap.yaml.py')
-rwxr-xr-xjob-cfg/rebootstrap.yaml.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py
index e86102a2..29f09c8b 100755
--- a/job-cfg/rebootstrap.yaml.py
+++ b/job-cfg/rebootstrap.yaml.py
@@ -11,9 +11,11 @@ architectures = """
""".split()
mono_architectures = """
- armel armhf arm64
+ armel armhf musl-linux-armhf arm64 musl-linux-arm64
alpha
+ musl-linux-i386
m68k
+ musl-linux-mips musl-linux-mipsel
powerpcel powerpcspe ppc64el
or1k
sh4
@@ -87,7 +89,7 @@ for arch in sorted(architectures):
if nobiarch and arch in mono_architectures:
continue
for supported in ["", "_supported"]:
- if nobiarch and supported:
+ if (nobiarch or arch.startswith("musl-linux-")) and supported:
continue
for debbindiff in ["", "_debbindiff"]:
if debbindiff and (arch not in release_architectures or gccver != "4.9"):
@@ -109,7 +111,7 @@ for arch in sorted(architectures):
if nobiarch and arch in mono_architectures:
continue
for supported in (False, True):
- if nobiarch and supported:
+ if (nobiarch or arch.startswith("musl-linux-")) and supported:
continue
for debbindiff in (False, True):
if debbindiff and (arch not in release_architectures or gccver != "4.9"):