Remove coffeelint usage
[platform/framework/web/crosswalk-tizen.git] / script / cibuild
1 #!/usr/bin/env python
2
3 import os
4 import subprocess
5 import sys
6
7 from lib.config import PLATFORM
8 from lib.util import execute, rm_rf, scoped_env
9
10
11 SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
12
13 LINUX_DEPS = [
14   'libdbus-1-dev',
15   'libgconf2-dev',
16   'libgnome-keyring-dev',
17   'libgtk2.0-dev',
18   'libnotify-dev',
19   'libnss3-dev',
20   'libxtst-dev',
21   'gcc-multilib',
22   'g++-multilib',
23 ]
24
25 LINUX_DEPS_ARM = [
26   'libc6-dev-armhf-cross',
27   'linux-libc-dev-armhf-cross',
28   'g++-arm-linux-gnueabihf',
29 ]
30
31
32 def main():
33   os.environ['CI'] = '1'
34
35   target_arch = 'x64'
36   if os.environ.has_key('TARGET_ARCH'):
37     target_arch = os.environ['TARGET_ARCH']
38
39   is_travis = (os.getenv('TRAVIS') == 'true')
40   if is_travis and PLATFORM == 'linux':
41     print 'Setup travis CI'
42     execute(['sudo', 'apt-get', 'update'])
43     deps = LINUX_DEPS
44     if target_arch == 'arm':
45       deps += LINUX_DEPS_ARM
46     execute(['sudo', 'apt-get', 'install'] + deps)
47
48     execute(['sh', '-e', '/etc/init.d/xvfb', 'start'])
49
50   if PLATFORM == 'linux':
51     os.environ['DISPLAY'] = ':99.0'
52
53   run_script('clean.py')
54
55   # CI's npm is not reliable.
56   npm = 'npm.cmd' if PLATFORM == 'win32' else 'npm'
57   execute([npm, 'install', 'npm@2.12.1'])
58
59   is_release = os.environ.has_key('ELECTRON_RELEASE')
60   args = ['--target_arch=' + target_arch]
61   if not is_release:
62     args += ['--dev']
63   run_script('bootstrap.py', args)
64
65   run_script('cpplint.py')
66   if PLATFORM != 'win32':
67     run_script('pylint.py')
68   if is_release:
69     run_script('build.py', ['-c', 'R'])
70     run_script('create-dist.py')
71     run_script('upload.py')
72   else:
73     run_script('build.py', ['-c', 'D'])
74     if PLATFORM != 'win32' and target_arch == 'x64':
75       run_script('test.py', ['--ci'])
76
77   run_script('clean.py')
78
79
80 def run_script(script, args=[]):
81   sys.stderr.write('\nRunning ' + script +'\n')
82   sys.stderr.flush()
83   script = os.path.join(SOURCE_ROOT, 'script', script)
84   subprocess.check_call([sys.executable, script] + args)
85
86
87 if __name__ == '__main__':
88   sys.exit(main())