Skip to content

Commit 42a82c3

Browse files
committed
Limit non-debug WASI builds to 3.11 and 3.12
It's when WASI was tier 3 and the files in `Tools/wasm` used for the build are removed in 3.14.
1 parent 1a4a9ff commit 42a82c3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

master/master.cfg

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,13 @@ for branch_num, (git_url, branchname, git_branch) in enumerate(git_branches):
239239

240240
# Only 3.11+ for WebAssembly builds
241241
if "wasm" in tags:
242+
# WASM wasn't a supported platform until 3.11.
242243
if branchname in {"3.9", "3.10"}:
243244
continue
244-
# Pydebug support is 3.13+
245+
# Tier 3 support is 3.11 & 3.12.
246+
elif "nondebug" in tags and branchname not in {"3.11", "3.12"}:
247+
continue
248+
# Tier 2 support is 3.13+.
245249
elif "nondebug" not in tags and branchname in {"3.11", "3.12"}:
246250
continue
247251

0 commit comments

Comments
 (0)