Skip to content

Commit f57fac9

Browse files
committed
changing the filter matrix to all all the configs
1 parent 112f217 commit f57fac9

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/scripts/filter-matrix.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -150,16 +150,8 @@ def main(args: list[str]) -> None:
150150
options.limit_pr_builds == "true",
151151
):
152152
print(f"[DEBUG] passed filter - adding to build matrix", file=sys.stderr)
153-
filtered_includes.append(item)
154-
155-
# NEW: Create distributed variant for specific configs
156-
# Only Python 3.10 + CUDA 13.0 for now
157-
if item["python_version"] == "3.10" and item["desired_cuda"] == "cu130":
158-
print(
159-
f"[DEBUG] Creating distributed config for py3.10+cu130",
160-
file=sys.stderr,
161-
)
162-
distributed_includes.append(create_distributed_config(item))
153+
filtered_includes.append(item)
154+
distributed_includes.append(create_distributed_config(item))
163155
else:
164156
print(f"[DEBUG] FILTERED OUT", file=sys.stderr)
165157

0 commit comments

Comments
 (0)