Merge pull request #2784 from neutrous/patch-1
[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   'gcc-multilib',
21   'g++-multilib',
22 ]
23
24 LINUX_DEPS_ARM = [
25   'libc6-dev-armhf-cross',
26   'linux-libc-dev-armhf-cross',
27   'g++-arm-linux-gnueabihf',
28 ]
29
30
31 def main():
32   os.environ['CI'] = '1'
33
34   target_arch = 'x64'
35   if os.environ.has_key('TARGET_ARCH'):
36     target_arch = os.environ['TARGET_ARCH']
37
38   is_travis = (os.getenv('TRAVIS') == 'true')
39   if is_travis and PLATFORM == 'linux':
40     print 'Setup travis CI'
41     execute(['sudo', 'apt-get', 'update'])
42     deps = LINUX_DEPS
43     if target_arch == 'arm':
44       deps += LINUX_DEPS_ARM
45     execute(['sudo', 'apt-get', 'install'] + deps)
46
47     execute(['sh', '-e', '/etc/init.d/xvfb', 'start'])
48
49   if PLATFORM == 'linux':
50     os.environ['DISPLAY'] = ':99.0'
51
52   run_script('clean.py')
53
54   # CI's npm is not reliable.
55   npm = 'npm.cmd' if PLATFORM == 'win32' else 'npm'
56   execute([npm, 'install', 'npm@2.12.1'])
57
58   is_release = os.environ.has_key('ELECTRON_RELEASE')
59   args = ['--target_arch=' + target_arch]
60   if not is_release:
61     args += ['--dev']
62   run_script('bootstrap.py', args)
63
64   run_script('cpplint.py')
65   if PLATFORM != 'win32':
66     run_script('pylint.py')
67   run_script('coffeelint.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())