Add build matrix for arm and ia32

This commit is contained in:
Cheng Zhao 2015-07-02 03:08:29 +00:00
Родитель 3a094e9802
Коммит 2de5ae9991
2 изменённых файлов: 18 добавлений и 6 удалений

Просмотреть файл

@ -1,13 +1,21 @@
git:
depth: 10
notifications:
email: false
language: cpp language: cpp
compiler: clang compiler: clang
os: os:
- linux - linux
- osx - osx
env:
- TARGET_ARCH=x64
notifications: matrix:
email: false include:
- os: linux
env: TARGET_ARCH=arm
- os: linux
env: TARGET_ARCH=ia32
script: './script/cibuild' script: './script/cibuild'
git:
depth: 10

Просмотреть файл

@ -40,7 +40,11 @@ def main():
rm_rf(os.path.join(SOURCE_ROOT, 'vendor', 'brightray', 'vendor', 'download', rm_rf(os.path.join(SOURCE_ROOT, 'vendor', 'brightray', 'vendor', 'download',
'libchromiumcontent')) 'libchromiumcontent'))
run_script('bootstrap.py', ['--dev']) target_arch = 'x64'
if os.environ.has_key('TARGET_ARCH'):
target_arch = os.environ['TARGET_ARCH']
run_script('bootstrap.py', ['--dev', '--target_arch=' + target_arch])
run_script('cpplint.py') run_script('cpplint.py')
if sys.platform != 'win32': if sys.platform != 'win32':