Skip to content

Commit 2cc0720

Browse files
[3.14] gh-144492: Fix process_changed_files outputs for reusable-{macos, wasi}.yml (GH-144518) (#144635)
gh-144492: Fix `process_changed_files` outputs for `reusable-{macos, wasi}.yml` (GH-144518) Fix `process_changed_files` double-processing reusable-{macos, wasi] ending up with incorrect outputs (cherry picked from commit fd190d1) Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
1 parent 9cc8e49 commit 2cc0720

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)