Skip to content

Commit a22bbf3

Browse files
authored
Limit non-debug WASI builds to 3.11 and 3.12 (#526)
It's when WASI was tier 3 and the files in `Tools/wasm` used for the build are removed in 3.14.
1 parent 34c2af5 commit a22bbf3

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
@@ -228,9 +228,13 @@ for branch_num, (git_url, branchname, git_branch) in enumerate(git_branches):
228228

229229
# Only 3.11+ for WebAssembly builds
230230
if "wasm" in tags:
231+
# WASM wasn't a supported platform until 3.11.
231232
if branchname in {"3.9", "3.10"}:
232233
continue
233-
# Pydebug support is 3.13+
234+
# Tier 3 support is 3.11 & 3.12.
235+
elif "nondebug" in tags and branchname not in {"3.11", "3.12"}:
236+
continue
237+
# Tier 2 support is 3.13+.
234238
elif "nondebug" not in tags and branchname in {"3.11", "3.12"}:
235239
continue
236240

0 commit comments

Comments
 (0)