gh-144492: Fix process_changed_files outputs for reusable-{macos, wasi}.yml (#144518)

Fix `process_changed_files` double-processing reusable-{macos, wasi] ending up with incorrect outputs
This commit is contained in:
Stan Ulbrych 2026-02-09 17:30:19 +00:00 committed by GitHub
parent 245ba3d6cb
commit fd190d1fa1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -232,9 +232,12 @@ def process_changed_files(changed_files: Set[Path]) -> Outputs:
if file.name == "reusable-windows-msi.yml":
run_windows_msi = True
if file.name == "reusable-macos.yml":
run_tests = True
platforms_changed.add("macos")
if file.name == "reusable-wasi.yml":
run_tests = True
platforms_changed.add("wasi")
continue
if not doc_file and file not in RUN_TESTS_IGNORE:
run_tests = True