Skip to content

Commit 1ad764c

Browse files
Fix process_changed_files double-processing reusable-{macos, wasi] ending up with incorrect outputs
1 parent 7e777c5 commit 1ad764c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Tools/build/compute-changes.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,12 @@ def process_changed_files(changed_files: Set[Path]) -> Outputs:
232232
if file.name == "reusable-windows-msi.yml":
233233
run_windows_msi = True
234234
if file.name == "reusable-macos.yml":
235+
run_tests = True
235236
platforms_changed.add("macos")
236237
if file.name == "reusable-wasi.yml":
238+
run_tests = True
237239
platforms_changed.add("wasi")
240+
continue
238241

239242
if not doc_file and file not in RUN_TESTS_IGNORE:
240243
run_tests = True

0 commit comments

Comments
 (0)