Skip to content

Commit 9d19ec1

Browse files
chore!: option to disable entire suite in build system.
1 parent 73804e8 commit 9d19ec1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gen_data/gen-suite-matrix.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ def generate_matrix_json() -> str:
1818
for variantPath in glob.iglob(f"{SUITES_DIR}/*", recursive=False):
1919
suiteName = variantPath.split('/')[2]
2020
variantName = variantPath.split('/')[3]
21-
22-
if os.path.exists(f"{variantPath}/.no-matrix-build"):
21+
22+
if os.path.exists(f"{variantPath}/.no-matrix-build") or os.path.exists(f"{SUITES_DIR}/{suiteName}/.no-matrix-build"):
2323
continue
2424

2525
element = { }

0 commit comments

Comments
 (0)