We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9780ebb commit a0a8907Copy full SHA for a0a8907
cpython-windows/build.py
@@ -1424,6 +1424,16 @@ def build_cpython(
1424
# The python.props file keys off MSBUILD, so it needs to be set.
1425
os.environ["MSBUILD"] = str(msbuild)
1426
1427
+ # Workaround for https://github.com/actions/runner-images/issues/10819
1428
+ if not os.environ.get("VCToolsRedistDir"):
1429
+ os.environ["VCToolsRedistDir"] = os.path.join(
1430
+ os.environ["VCINSTALLDIR"],
1431
+ "Redist",
1432
+ "MSVC",
1433
+ os.environ["VCToolsVersion"],
1434
+ "",
1435
+ )
1436
+
1437
bzip2_archive = download_entry("bzip2", BUILD)
1438
sqlite_archive = download_entry("sqlite", BUILD)
1439
tk_bin_archive = download_entry(
0 commit comments