We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73804e8 commit 9d19ec1Copy full SHA for 9d19ec1
gen_data/gen-suite-matrix.py
@@ -18,8 +18,8 @@ def generate_matrix_json() -> str:
18
for variantPath in glob.iglob(f"{SUITES_DIR}/*", recursive=False):
19
suiteName = variantPath.split('/')[2]
20
variantName = variantPath.split('/')[3]
21
-
22
- if os.path.exists(f"{variantPath}/.no-matrix-build"):
+
+ if os.path.exists(f"{variantPath}/.no-matrix-build") or os.path.exists(f"{SUITES_DIR}/{suiteName}/.no-matrix-build"):
23
continue
24
25
element = { }
0 commit comments