File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -208,22 +208,22 @@ def process_changed_files(changed_files: Set[Path]) -> Outputs:
208208 # Check which platform specific tests to run
209209 if run_tests :
210210 if not has_platform_specific_change or not platforms_changed :
211- run_macos = True
212- run_ubuntu = True
213211 run_android = True
214212 run_ios = True
213+ run_macos = True
214+ run_ubuntu = True
215215 run_wasi = True
216216 else :
217- run_macos = "macos" in platforms_changed
218- run_ubuntu = False
219217 run_android = "android" in platforms_changed
220218 run_ios = "ios" in platforms_changed
219+ run_macos = "macos" in platforms_changed
220+ run_ubuntu = False
221221 run_wasi = "wasi" in platforms_changed
222222 else :
223- run_macos = False
224- run_ubuntu = False
225223 run_android = False
226224 run_ios = False
225+ run_macos = False
226+ run_ubuntu = False
227227 run_wasi = False
228228
229229 return Outputs (
You can’t perform that action at this time.
0 commit comments