Skip to content

Commit

Permalink
Limit non-debug WASI builds to 3.11 and 3.12 (#526)
Browse files Browse the repository at this point in the history
It's when WASI was tier 3 and the files in `Tools/wasm` used for the build are removed in 3.14.
  • Loading branch information
brettcannon authored Oct 1, 2024
1 parent 34c2af5 commit a22bbf3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,13 @@ for branch_num, (git_url, branchname, git_branch) in enumerate(git_branches):

# Only 3.11+ for WebAssembly builds
if "wasm" in tags:
# WASM wasn't a supported platform until 3.11.
if branchname in {"3.9", "3.10"}:
continue
# Pydebug support is 3.13+
# Tier 3 support is 3.11 & 3.12.
elif "nondebug" in tags and branchname not in {"3.11", "3.12"}:
continue
# Tier 2 support is 3.13+.
elif "nondebug" not in tags and branchname in {"3.11", "3.12"}:
continue

Expand Down

0 comments on commit a22bbf3

Please sign in to comment.