2013-08-21 07:15:22 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
2013-08-21 17:41:34 +04:00
|
|
|
import sys
|
2013-08-21 07:15:22 +04:00
|
|
|
|
2013-11-26 05:39:24 +04:00
|
|
|
from lib.util import rm_rf
|
|
|
|
|
2013-08-21 07:15:22 +04:00
|
|
|
|
2013-08-21 17:41:34 +04:00
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2013-11-26 05:39:24 +04:00
|
|
|
rm_rf(os.path.join(SOURCE_ROOT, 'out'))
|
2013-11-26 07:04:37 +04:00
|
|
|
rm_rf(os.path.join(SOURCE_ROOT, 'vendor', 'brightray', 'vendor', 'download',
|
|
|
|
'libchromiumcontent'))
|
2013-11-26 05:39:24 +04:00
|
|
|
|
2013-08-21 17:41:34 +04:00
|
|
|
run_script('bootstrap.py')
|
|
|
|
run_script('cpplint.py')
|
2013-09-27 06:22:13 +04:00
|
|
|
run_script('pylint.py')
|
2013-09-27 06:49:55 +04:00
|
|
|
run_script('coffeelint.py')
|
2013-08-21 17:41:34 +04:00
|
|
|
run_script('build.py')
|
|
|
|
run_script('test.py', ['--ci'])
|
|
|
|
run_script('create-dist.py')
|
|
|
|
|
|
|
|
|
|
|
|
def run_script(script, args=[]):
|
|
|
|
script = os.path.join(SOURCE_ROOT, 'script', script)
|
|
|
|
subprocess.check_call([sys.executable, script] + args)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|