ci: add check for dist zip file changes (#18446)
This commit is contained in:
parent
471d457576
commit
f5b3d00b47
10 changed files with 873 additions and 1 deletions
|
@ -54,7 +54,7 @@ def main(argv):
|
|||
if sys.platform == 'darwin':
|
||||
execute(['zip', '-r', '-y', dist_zip] + list(dist_files))
|
||||
else:
|
||||
with zipfile.ZipFile(dist_zip, 'w', zipfile.ZIP_DEFLATED, True) as z:
|
||||
with zipfile.ZipFile(dist_zip, 'w', zipfile.ZIP_DEFLATED, allowZip64=True) as z:
|
||||
for dep in dist_files:
|
||||
if skip_path(dep, dist_zip, target_cpu):
|
||||
continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue