Can only run tests on x64 machine

This commit is contained in:
Cheng Zhao 2015-09-03 17:48:50 +09:00
parent c01d2fbbcd
commit 992aada90f

View file

@ -71,7 +71,7 @@ def main():
run_script('upload.py')
else:
run_script('build.py', ['-c', 'D'])
if is_travis or PLATFORM == 'linux':
if (is_travis or PLATFORM == 'linux') and target_arch == 'x64':
run_script('test.py', ['--ci'])
run_script('clean.py')