Do debug build on Windows CI for non-release

This commit is contained in:
Cheng Zhao 2015-07-03 11:17:58 +08:00
parent a1bb0d4d66
commit fe877da61f

View file

@ -70,7 +70,7 @@ def main():
if is_release:
run_script('build.py', ['-c', 'R'])
run_script('create-dist.py')
elif target_arch == 'x64':
elif PLATFORM == 'win32' or target_arch == 'x64':
run_script('build.py', ['-c', 'D'])
if PLATFORM != 'win32':
run_script('test.py', ['--ci'])