Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Tools/build/compute-changes.py
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
  • Loading branch information
StanFromIreland and hugovk authored Dec 8, 2025
commit c06a08c93b94d707d25428b8d3459c0e36f7c1bc
12 changes: 6 additions & 6 deletions Tools/build/compute-changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,22 +208,22 @@ def process_changed_files(changed_files: Set[Path]) -> Outputs:
# Check which platform specific tests to run
if run_tests:
if not has_platform_specific_change or not platforms_changed:
run_macos = True
run_ubuntu = True
run_android = True
run_ios = True
run_macos = True
run_ubuntu = True
run_wasi = True
else:
run_macos = "macos" in platforms_changed
run_ubuntu = False
run_android = "android" in platforms_changed
run_ios = "ios" in platforms_changed
run_macos = "macos" in platforms_changed
run_ubuntu = False
run_wasi = "wasi" in platforms_changed
else:
run_macos = False
run_ubuntu = False
run_android = False
run_ios = False
run_macos = False
run_ubuntu = False
run_wasi = False

return Outputs(
Expand Down
Loading