Fix linting error
This commit is contained in:
parent
b2564242e0
commit
34d108e896
2 changed files with 8 additions and 7 deletions
|
@ -147,7 +147,7 @@ def setup_libchromiumcontent(is_dev, target_arch, url,
|
||||||
libcc_shared_library_path,
|
libcc_shared_library_path,
|
||||||
libcc_static_library_path):
|
libcc_static_library_path):
|
||||||
target_dir = os.path.join(DOWNLOAD_DIR, 'libchromiumcontent')
|
target_dir = os.path.join(DOWNLOAD_DIR, 'libchromiumcontent')
|
||||||
download = os.path.join(VENDOR_DIR, 'libchromiumcontent', 'script',
|
script = os.path.join(VENDOR_DIR, 'libchromiumcontent', 'script',
|
||||||
'download')
|
'download')
|
||||||
args = ['-f', '-c', get_libchromiumcontent_commit(), '--target_arch',
|
args = ['-f', '-c', get_libchromiumcontent_commit(), '--target_arch',
|
||||||
target_arch, url, target_dir]
|
target_arch, url, target_dir]
|
||||||
|
@ -161,9 +161,9 @@ def setup_libchromiumcontent(is_dev, target_arch, url,
|
||||||
else:
|
else:
|
||||||
mkdir_p(DOWNLOAD_DIR)
|
mkdir_p(DOWNLOAD_DIR)
|
||||||
if is_dev:
|
if is_dev:
|
||||||
subprocess.check_call([sys.executable, download] + args)
|
subprocess.check_call([sys.executable, script] + args)
|
||||||
else:
|
else:
|
||||||
subprocess.check_call([sys.executable, download, '-s'] + args)
|
subprocess.check_call([sys.executable, script, '-s'] + args)
|
||||||
|
|
||||||
|
|
||||||
def update_win32_python():
|
def update_win32_python():
|
||||||
|
@ -204,7 +204,8 @@ def download_sysroot(target_arch):
|
||||||
|
|
||||||
def download_mips64el_toolchain():
|
def download_mips64el_toolchain():
|
||||||
# Download sysroot image.
|
# Download sysroot image.
|
||||||
if not os.path.exists(os.path.join(VENDOR_DIR, 'debian_jessie_mips64-sysroot')):
|
if not os.path.exists(os.path.join(VENDOR_DIR,
|
||||||
|
'debian_jessie_mips64-sysroot')):
|
||||||
tar_name = 'debian_jessie_mips64-sysroot.tar.bz2'
|
tar_name = 'debian_jessie_mips64-sysroot.tar.bz2'
|
||||||
download(tar_name, MIPS64EL_SYSROOT_URL,
|
download(tar_name, MIPS64EL_SYSROOT_URL,
|
||||||
os.path.join(SOURCE_ROOT, tar_name))
|
os.path.join(SOURCE_ROOT, tar_name))
|
||||||
|
|
|
@ -4,11 +4,11 @@ const buildAppVeyorURL = 'https://windows-ci.electronjs.org/api/builds'
|
||||||
const jenkinsServer = 'https://mac-ci.electronjs.org'
|
const jenkinsServer = 'https://mac-ci.electronjs.org'
|
||||||
|
|
||||||
const circleCIJobs = [
|
const circleCIJobs = [
|
||||||
'electron-linux-arm'
|
'electron-linux-arm',
|
||||||
'electron-linux-arm64',
|
'electron-linux-arm64',
|
||||||
'electron-linux-ia32',
|
'electron-linux-ia32',
|
||||||
'electron-linux-mips64el',
|
'electron-linux-mips64el',
|
||||||
'electron-linux-x64',
|
'electron-linux-x64'
|
||||||
]
|
]
|
||||||
|
|
||||||
const jenkinsJobs = [
|
const jenkinsJobs = [
|
||||||
|
|
Loading…
Add table
Reference in a new issue