From 88b71b9633230cbd2a509f73ba7ecd041319ee97 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Thu, 2 Jul 2015 05:18:05 +0000 Subject: [PATCH] Only run tests for x64 target --- script/cibuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/cibuild b/script/cibuild index 96e7690c9534..9a8fdf3f1b02 100755 --- a/script/cibuild +++ b/script/cibuild @@ -71,7 +71,8 @@ def main(): run_script('pylint.py') run_script('coffeelint.py') run_script('build.py', ['-c', 'Debug']) - run_script('test.py', ['--ci']) + if target_arch == 'x64': + run_script('test.py', ['--ci']) def run_script(script, args=[]):