bpo-35683: Improve Azure Pipelines steps (GH-11493)

This commit is contained in:
Steve Dower 2019-01-22 10:49:52 -08:00 committed by GitHub
parent bf4ac2d2fd
commit 28f6cb34f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 147 additions and 165 deletions

View file

@ -156,6 +156,8 @@ def get_layout(ns):
for dest, src in rglob(ns.build, "vcruntime*.dll"):
yield dest, src
yield "LICENSE.txt", ns.source / "LICENSE"
for dest, src in rglob(ns.build, ("*.pyd", "*.dll")):
if src.stem.endswith("_d") != bool(ns.debug) and src not in REQUIRED_DLLS:
continue