Split up linux CI jobs
This commit is contained in:
Родитель
2047bb141c
Коммит
2106bf6970
|
@ -23,9 +23,12 @@ def main():
|
|||
return (run_ci(['-t', 'x64']) or
|
||||
run_ci(['-t', 'ia32']))
|
||||
elif sys.platform == 'linux2':
|
||||
return (run_ci(['-t', 'x64']) or
|
||||
run_ci(['-t', 'ia32']) or
|
||||
run_ci(['-t', 'arm']))
|
||||
if 'TARGET_ARCH' in os.environ:
|
||||
return run_ci(['-t', os.environ['TARGET_ARCH']])
|
||||
else:
|
||||
return (run_ci(['-t', 'x64']) or
|
||||
run_ci(['-t', 'ia32']) or
|
||||
run_ci(['-t', 'arm']))
|
||||
else:
|
||||
return run_ci([])
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
export TARGET_ARCH=arm
|
||||
|
||||
script/cibuild-libchromiumcontent-linux
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
export TARGET_ARCH=ia32
|
||||
|
||||
script/cibuild-libchromiumcontent-linux
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
export TARGET_ARCH=x64
|
||||
|
||||
script/cibuild-libchromiumcontent-linux
|
Загрузка…
Ссылка в новой задаче