Only build Debug target in cibuild.

This commit is contained in:
Cheng Zhao 2014-05-18 23:52:14 +08:00
parent c1e2348695
commit 59293bc938

View file

@ -26,7 +26,7 @@ def main():
if sys.platform != 'win32': if sys.platform != 'win32':
run_script('pylint.py') run_script('pylint.py')
run_script('coffeelint.py') run_script('coffeelint.py')
run_script('build.py') run_script('build.py', ['-c', 'Debug'])
run_script('test.py', ['--ci']) run_script('test.py', ['--ci'])