64 lines
		
	
	
	
		
			1.6 KiB
			
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
	
		
			1.6 KiB
			
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| import os
 | |
| import subprocess
 | |
| import sys
 | |
| 
 | |
| from lib.util import execute, rm_rf, scoped_env
 | |
| 
 | |
| 
 | |
| SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
 | |
| 
 | |
| LINUX_DEPS = [
 | |
|   'libgnome-keyring-dev',
 | |
|   'libgtk2.0-dev',
 | |
|   'libnotify-dev',
 | |
|   'gcc-multilib',
 | |
|   'g++-multilib',
 | |
| ]
 | |
| 
 | |
| 
 | |
| def main():
 | |
|   os.environ['CI'] = '1'
 | |
| 
 | |
|   is_travis = (os.getenv('TRAVIS') == 'true')
 | |
|   if is_travis and sys.platform == 'linux2':
 | |
|     print 'Setup travis CI'
 | |
|     execute(['sudo', 'apt-get', 'update'])
 | |
|     execute(['sudo', 'apt-get', 'install'] + LINUX_DEPS)
 | |
| 
 | |
|     os.environ['DISPLAY'] = ':99.0'
 | |
|     execute(['sh', '-e', '/etc/init.d/xvfb', 'start'])
 | |
| 
 | |
|   rm_rf(os.path.join(SOURCE_ROOT, 'out'))
 | |
|   rm_rf(os.path.join(SOURCE_ROOT, 'node_modules'))
 | |
|   rm_rf(os.path.join(SOURCE_ROOT, 'frameworks'))
 | |
|   rm_rf(os.path.join(SOURCE_ROOT, 'external_binaries'))
 | |
|   rm_rf(os.path.join(SOURCE_ROOT, 'vendor', 'apm', 'node_modules'))
 | |
|   rm_rf(os.path.join(SOURCE_ROOT, 'vendor', 'brightray', 'vendor', 'download',
 | |
|                      'libchromiumcontent'))
 | |
| 
 | |
|   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')
 | |
| 
 | |
|   run_script('cpplint.py')
 | |
|   if sys.platform != 'win32':
 | |
|     run_script('pylint.py')
 | |
|   run_script('coffeelint.py')
 | |
|   run_script('build.py', ['-c', 'Debug'])
 | |
|   run_script('test.py', ['--ci'])
 | |
| 
 | |
| 
 | |
| def run_script(script, args=[]):
 | |
|   print 'Running', script
 | |
|   script = os.path.join(SOURCE_ROOT, 'script', script)
 | |
|   subprocess.check_call([sys.executable, script] + args)
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|   sys.exit(main())
 | 
