From 1bd8a9869a17f78ef16e67d63f4e81cf2461676c Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Fri, 21 Aug 2015 14:18:04 +0800 Subject: [PATCH] Run build script on arm and ia32 Linux --- script/cibuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/cibuild b/script/cibuild index c282bb0275a4..67623beba402 100755 --- a/script/cibuild +++ b/script/cibuild @@ -69,9 +69,9 @@ def main(): run_script('build.py', ['-c', 'R']) run_script('create-dist.py') run_script('upload.py') - elif PLATFORM == 'win32' or target_arch == 'x64': + else: run_script('build.py', ['-c', 'D']) - if PLATFORM != 'win32': + if PLATFORM != 'win32' and target_arch == 'x64': run_script('test.py', ['--ci']) run_script('clean.py')