Split build and test into separate jobs
Also clean from review
This commit is contained in:
parent
62172dee6c
commit
96ec3e9162
4 changed files with 111 additions and 32 deletions
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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue