aboutsummaryrefslogtreecommitdiff
path: root/lava-v2-jobs-from-api.py
diff options
context:
space:
mode:
authorMatt Hart <matthew.hart@linaro.org>2017-11-20 16:17:02 +0000
committerGuillaume Tucker <guillaume.tucker@collabora.com>2018-01-16 10:32:40 +0000
commit2030eeb6dfbae77fb988e20109a0084bf0f764c4 (patch)
treec649fa56a528160a11683f4d4ecd3bae4911ae59 /lava-v2-jobs-from-api.py
parentcf0d2c202f2c2fb531da9e9a471178e1a0964ad8 (diff)
Add simple plan to atom330
Diffstat (limited to 'lava-v2-jobs-from-api.py')
-rwxr-xr-xlava-v2-jobs-from-api.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lava-v2-jobs-from-api.py b/lava-v2-jobs-from-api.py
index 3bf95f8..dbff644 100755
--- a/lava-v2-jobs-from-api.py
+++ b/lava-v2-jobs-from-api.py
@@ -181,10 +181,13 @@ def main(args):
continue
elif targets is not None and device_type not in targets:
print "device_type %s is not in targets %s" % (device_type, targets)
+ continue
elif arch == 'x86' and dtb == 'x86-32' and 'i386' not in arch_defconfig:
print "%s is not a 32-bit x86 build, skipping for 32-bit device %s" % (defconfig, device_type)
+ continue
elif 'kselftest' in defconfig and plan != 'kselftest':
print "Skipping kselftest defconfig because plan was not kselftest"
+ continue
else:
for template in device['templates']:
short_template_file = plan + '/' + str(template)