File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -123,14 +123,25 @@ class Outputs:
123123
124124def compute_changes () -> None :
125125 target_ref , head_ref = git_refs ()
126- if os .environ .get ("GITHUB_EVENT_NAME" , "" ) == "pull_request" :
126+ if True :
127+ outputs = Outputs (
128+ run_ubuntu = True ,
129+ )
130+ elif os .environ .get ("GITHUB_EVENT_NAME" , "" ) == "pull_request" :
127131 # Getting changed files only makes sense on a pull request
128132 files = get_changed_files (target_ref , head_ref )
129133 outputs = process_changed_files (files )
130134 else :
131135 # Otherwise, just run the tests
132136 outputs = Outputs (
137+ run_android = True ,
138+ run_emscripten = True ,
139+ run_ios = True ,
140+ run_macos = True ,
141+ run_tests = True ,
133142 run_ubuntu = True ,
143+ run_wasi = True ,
144+ run_windows_tests = True ,
134145 )
135146 target_branch = target_ref .removeprefix ("origin/" )
136147 outputs = process_target_branch (outputs , target_branch )
You can’t perform that action at this time.
0 commit comments