mirror of
https://github.com/electron/electron.git
synced 2026-01-08 23:18:06 -05:00
Split build and test into separate jobs
Also clean from review
This commit is contained in:
10
build/zip.py
10
build/zip.py
@@ -21,12 +21,10 @@ PATHS_TO_SKIP = [
|
||||
]
|
||||
|
||||
def skip_path(dep):
|
||||
should_skip = (
|
||||
any(dep.startswith(path) for path in PATHS_TO_SKIP) or
|
||||
any(dep.endswith(ext) for ext in EXTENSIONS_TO_SKIP))
|
||||
if should_skip:
|
||||
print("Skipping {}".format(dep))
|
||||
return should_skip
|
||||
should_skip = (
|
||||
any(dep.startswith(path) for path in PATHS_TO_SKIP) or
|
||||
any(dep.endswith(ext) for ext in EXTENSIONS_TO_SKIP))
|
||||
return should_skip
|
||||
|
||||
def strip_binaries(target_cpu, dep):
|
||||
for binary in LINUX_BINARIES_TO_STRIP:
|
||||
|
||||
Reference in New Issue
Block a user