Skip to content

Commit a2a444d

Browse files
wrong branch:-/
1 parent d1a9414 commit a2a444d

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Tools/build/compute-changes.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,25 @@ class Outputs:
123123

124124
def 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)

0 commit comments

Comments
 (0)