2013-08-21 11:15:22 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
2013-08-21 21:41:34 +08:00
|
|
|
import sys
|
2013-08-21 11:15:22 +08:00
|
|
|
|
2014-08-09 09:22:06 +08:00
|
|
|
from lib.util import execute, rm_rf, scoped_env
|
2013-11-26 09:39:24 +08:00
|
|
|
|
2013-08-21 11:15:22 +08:00
|
|
|
|
2013-08-21 21:41:34 +08:00
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
|
|
|
|
2014-08-08 23:32:51 +08:00
|
|
|
LINUX_DEPS = [
|
|
|
|
'libgnome-keyring-dev',
|
|
|
|
'libgtk2.0-dev',
|
|
|
|
'libnotify-dev',
|
|
|
|
'gcc-multilib',
|
|
|
|
'g++-multilib',
|
|
|
|
]
|
|
|
|
|
2013-08-21 21:41:34 +08:00
|
|
|
|
|
|
|
def main():
|
2014-02-17 17:50:25 +08:00
|
|
|
os.environ['CI'] = '1'
|
|
|
|
|
2014-08-09 09:22:06 +08:00
|
|
|
is_travis = (os.getenv('TRAVIS') == 'true')
|
|
|
|
if is_travis and sys.platform == 'linux2':
|
2014-08-09 09:48:37 +08:00
|
|
|
print 'Setup travis CI'
|
2014-08-09 09:22:06 +08:00
|
|
|
execute(['sudo', 'apt-get', 'update'])
|
|
|
|
execute(['sudo', 'apt-get', 'install'] + LINUX_DEPS)
|
2014-08-09 09:48:37 +08:00
|
|
|
|
|
|
|
os.environ['DISPLAY'] = ':99.0'
|
|
|
|
execute(['sh', '-e', '/etc/init.d/xvfb', 'start'])
|
2014-08-08 23:10:20 +08:00
|
|
|
|
2013-11-26 09:39:24 +08:00
|
|
|
rm_rf(os.path.join(SOURCE_ROOT, 'out'))
|
2013-12-16 15:15:33 +08:00
|
|
|
rm_rf(os.path.join(SOURCE_ROOT, 'node_modules'))
|
2014-02-02 19:58:25 +08:00
|
|
|
rm_rf(os.path.join(SOURCE_ROOT, 'frameworks'))
|
2014-05-18 23:35:07 +08:00
|
|
|
rm_rf(os.path.join(SOURCE_ROOT, 'external_binaries'))
|
2014-03-11 00:01:06 +08:00
|
|
|
rm_rf(os.path.join(SOURCE_ROOT, 'vendor', 'apm', 'node_modules'))
|
2013-11-26 11:04:37 +08:00
|
|
|
rm_rf(os.path.join(SOURCE_ROOT, 'vendor', 'brightray', 'vendor', 'download',
|
|
|
|
'libchromiumcontent'))
|
2013-11-26 09:39:24 +08:00
|
|
|
|
2014-08-09 09:22:06 +08:00
|
|
|
if is_travis and sys.platform == 'linux2':
|
|
|
|
with scoped_env('CXX', 'g++'):
|
|
|
|
with scoped_env('CC', 'gcc'):
|
|
|
|
run_script('bootstrap.py')
|
|
|
|
run_script('update.py')
|
|
|
|
else:
|
|
|
|
run_script('bootstrap.py')
|
|
|
|
|
2013-08-21 21:41:34 +08:00
|
|
|
run_script('cpplint.py')
|
2014-03-03 11:31:45 +00:00
|
|
|
if sys.platform != 'win32':
|
|
|
|
run_script('pylint.py')
|
2013-09-27 10:49:55 +08:00
|
|
|
run_script('coffeelint.py')
|
2014-05-18 23:52:14 +08:00
|
|
|
run_script('build.py', ['-c', 'Debug'])
|
2013-08-21 21:41:34 +08:00
|
|
|
run_script('test.py', ['--ci'])
|
|
|
|
|
|
|
|
|
|
|
|
def run_script(script, args=[]):
|
2014-05-09 10:17:02 +08:00
|
|
|
print 'Running', script
|
2013-08-21 21:41:34 +08:00
|
|
|
script = os.path.join(SOURCE_ROOT, 'script', script)
|
|
|
|
subprocess.check_call([sys.executable, script] + args)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|