Don't upload arm version of chromedriver

This commit is contained in:
Cheng Zhao 2015-07-02 07:25:17 +00:00
parent 8110f2f221
commit f0eac9d828
2 changed files with 12 additions and 8 deletions

View file

@ -80,6 +80,8 @@ def main():
rm_rf(DIST_DIR)
os.makedirs(DIST_DIR)
target_arch = get_target_arch()
force_build()
create_symbols()
copy_binaries()
@ -89,11 +91,13 @@ def main():
if PLATFORM == 'linux':
strip_binaries()
copy_system_libraries()
if target_arch != 'arm':
copy_system_libraries()
create_version()
create_dist_zip()
create_chrome_binary_zip('chromedriver', get_chromedriver_version())
if target_arch != 'arm':
create_chrome_binary_zip('chromedriver', get_chromedriver_version())
create_chrome_binary_zip('mksnapshot', ATOM_SHELL_VERSION)
create_symbols_zip()