2013-08-21 03:15:22 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
2013-08-21 13:41:34 +00:00
|
|
|
import sys
|
2013-08-21 03:15:22 +00:00
|
|
|
|
2015-07-03 02:35:40 +00:00
|
|
|
from lib.config import PLATFORM
|
2014-08-09 01:22:06 +00:00
|
|
|
from lib.util import execute, rm_rf, scoped_env
|
2013-11-26 01:39:24 +00:00
|
|
|
|
2013-08-21 03:15:22 +00:00
|
|
|
|
2013-08-21 13:41:34 +00:00
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
|
|
|
|
2014-08-08 15:32:51 +00:00
|
|
|
LINUX_DEPS = [
|
2014-10-21 07:01:24 +00:00
|
|
|
'libdbus-1-dev',
|
2014-11-15 02:37:27 +00:00
|
|
|
'libgconf2-dev',
|
2014-08-08 15:32:51 +00:00
|
|
|
'libgnome-keyring-dev',
|
|
|
|
'libgtk2.0-dev',
|
|
|
|
'libnotify-dev',
|
2015-07-07 06:42:02 +00:00
|
|
|
'libnss3-dev',
|
2015-12-08 09:32:42 +00:00
|
|
|
'libxtst-dev',
|
2017-07-28 16:24:44 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
LINUX_DEPS_NO_ARM = [
|
2015-07-02 05:27:12 +00:00
|
|
|
'gcc-multilib',
|
|
|
|
'g++-multilib',
|
2014-08-08 15:32:51 +00:00
|
|
|
]
|
|
|
|
|
2015-07-02 04:47:43 +00:00
|
|
|
LINUX_DEPS_ARM = [
|
2017-07-28 16:24:44 +00:00
|
|
|
'binutils-aarch64-linux-gnu',
|
|
|
|
'libc6-dev-armhf-cross',
|
|
|
|
'linux-libc-dev-armhf-cross',
|
|
|
|
'g++-arm-linux-gnueabihf',
|
|
|
|
'g++-4.8-multilib-arm-linux-gnueabihf',
|
|
|
|
'gcc-4.8-multilib-arm-linux-gnueabihf',
|
2015-07-02 04:42:36 +00:00
|
|
|
]
|
|
|
|
|
2017-08-08 06:59:45 +00:00
|
|
|
LINUX_DEPS_ARM64 = [
|
|
|
|
'binutils-aarch64-linux-gnu',
|
|
|
|
'libc6-dev-arm64-cross',
|
|
|
|
'linux-libc-dev-arm64-cross',
|
|
|
|
'g++-4.8-aarch64-linux-gnu',
|
|
|
|
'gcc-4.8-aarch64-linux-gnu',
|
|
|
|
'gcc-aarch64-linux-gnu',
|
|
|
|
]
|
2013-08-21 13:41:34 +00:00
|
|
|
|
|
|
|
def main():
|
2014-02-17 09:50:25 +00:00
|
|
|
os.environ['CI'] = '1'
|
|
|
|
|
2016-07-26 10:24:28 +00:00
|
|
|
# Ignore the CXX and CC env in CI.
|
|
|
|
try:
|
|
|
|
del os.environ['CC']
|
|
|
|
del os.environ['CXX']
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
2015-07-02 04:42:36 +00:00
|
|
|
target_arch = 'x64'
|
|
|
|
if os.environ.has_key('TARGET_ARCH'):
|
|
|
|
target_arch = os.environ['TARGET_ARCH']
|
|
|
|
|
2014-08-09 01:22:06 +00:00
|
|
|
is_travis = (os.getenv('TRAVIS') == 'true')
|
2015-07-03 02:35:40 +00:00
|
|
|
if is_travis and PLATFORM == 'linux':
|
2014-08-09 01:48:37 +00:00
|
|
|
print 'Setup travis CI'
|
2014-08-09 01:22:06 +00:00
|
|
|
execute(['sudo', 'apt-get', 'update'])
|
2015-07-02 04:42:36 +00:00
|
|
|
deps = LINUX_DEPS
|
|
|
|
if target_arch == 'arm':
|
2015-07-02 04:47:43 +00:00
|
|
|
deps += LINUX_DEPS_ARM
|
2017-08-08 06:59:45 +00:00
|
|
|
elif target_arch == 'arm64':
|
|
|
|
deps += LINUX_DEPS_ARM64
|
2017-07-28 16:24:44 +00:00
|
|
|
else:
|
|
|
|
deps += LINUX_DEPS_NO_ARM
|
2015-07-02 04:42:36 +00:00
|
|
|
execute(['sudo', 'apt-get', 'install'] + deps)
|
2014-08-09 01:48:37 +00:00
|
|
|
|
2017-07-21 21:46:22 +00:00
|
|
|
if PLATFORM == 'linux' and target_arch == 'x64':
|
2017-07-21 21:35:06 +00:00
|
|
|
os.environ['DISPLAY'] = ':99.0'
|
|
|
|
execute(['sh', '-e', '/etc/init.d/xvfb', 'start'])
|
2017-07-21 20:28:02 +00:00
|
|
|
|
2015-07-02 14:45:26 +00:00
|
|
|
# CI's npm is not reliable.
|
2015-07-03 02:35:40 +00:00
|
|
|
npm = 'npm.cmd' if PLATFORM == 'win32' else 'npm'
|
2015-07-03 00:54:03 +00:00
|
|
|
execute([npm, 'install', 'npm@2.12.1'])
|
2015-07-02 14:45:26 +00:00
|
|
|
|
2016-04-07 17:03:16 +00:00
|
|
|
log_versions()
|
2016-08-21 10:30:14 +00:00
|
|
|
# Add "./node_modules/.bin" to the beginning of $PATH, which will ensure
|
|
|
|
# future "npm" invocations use the right version.
|
|
|
|
node_bin_dir = os.path.join(SOURCE_ROOT, 'node_modules', '.bin')
|
|
|
|
os.environ['PATH'] = os.path.pathsep.join([node_bin_dir,
|
|
|
|
os.environ.get('PATH', '')])
|
2016-04-07 17:03:16 +00:00
|
|
|
|
2017-07-21 17:05:12 +00:00
|
|
|
is_release = os.environ.get('ELECTRON_RELEASE', '') == '1'
|
2015-07-03 02:14:13 +00:00
|
|
|
args = ['--target_arch=' + target_arch]
|
|
|
|
if not is_release:
|
|
|
|
args += ['--dev']
|
|
|
|
run_script('bootstrap.py', args)
|
2014-08-09 01:22:06 +00:00
|
|
|
|
2015-07-03 02:35:40 +00:00
|
|
|
if PLATFORM != 'win32':
|
2016-03-30 21:21:07 +00:00
|
|
|
sys.stderr.write('\nRunning `npm run lint`\n')
|
|
|
|
sys.stderr.flush()
|
|
|
|
execute([npm, 'run', 'lint'])
|
2017-04-01 04:01:55 +00:00
|
|
|
|
2015-07-03 02:14:13 +00:00
|
|
|
if is_release:
|
|
|
|
run_script('build.py', ['-c', 'R'])
|
|
|
|
run_script('create-dist.py')
|
2015-07-03 05:43:20 +00:00
|
|
|
run_script('upload.py')
|
2015-08-21 06:18:04 +00:00
|
|
|
else:
|
2015-07-03 02:14:13 +00:00
|
|
|
run_script('build.py', ['-c', 'D'])
|
2016-04-30 08:17:23 +00:00
|
|
|
if PLATFORM == 'win32' or target_arch == 'x64':
|
2017-05-25 22:41:05 +00:00
|
|
|
run_script('test.py', ['--ci', '--rebuild_native_modules'])
|
2017-03-29 23:23:30 +00:00
|
|
|
run_script('verify-ffmpeg.py')
|
2013-08-21 13:41:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
def run_script(script, args=[]):
|
2015-09-03 08:20:48 +00:00
|
|
|
sys.stderr.write('\nRunning ' + script +'\n')
|
|
|
|
sys.stderr.flush()
|
2013-08-21 13:41:34 +00:00
|
|
|
script = os.path.join(SOURCE_ROOT, 'script', script)
|
|
|
|
subprocess.check_call([sys.executable, script] + args)
|
|
|
|
|
|
|
|
|
2016-04-07 17:03:16 +00:00
|
|
|
def log_versions():
|
|
|
|
sys.stderr.write('\nnode --version\n')
|
|
|
|
sys.stderr.flush()
|
2016-04-07 17:15:31 +00:00
|
|
|
subprocess.call(['node', '--version'])
|
2016-04-07 17:03:16 +00:00
|
|
|
|
|
|
|
sys.stderr.write('\nnpm --version\n')
|
|
|
|
sys.stderr.flush()
|
2016-04-07 17:14:47 +00:00
|
|
|
npm = 'npm.cmd' if PLATFORM == 'win32' else 'npm'
|
2016-04-07 17:15:31 +00:00
|
|
|
subprocess.call([npm, '--version'])
|
2016-04-07 17:03:16 +00:00
|
|
|
|
|
|
|
|
2013-08-21 13:41:34 +00:00
|
|
|
if __name__ == '__main__':
|
2015-07-03 06:36:45 +00:00
|
|
|
sys.exit(main())
|