commit | 85877cb9d5e8b0bc45dfc946b353ff53a290e3a4 | [log] [tgz] |
---|---|---|
author | Philipp Wollermann <philwo@google.com> | Fri Jul 02 19:20:33 2021 +0200 |
committer | Philipp Wollermann <philwo@google.com> | Sat Aug 07 09:09:10 2021 +0200 |
tree | b6760392f7bc972d7e36d209142998c16b528068 | |
parent | 54719fe2a3a4ba5b9fb1768f3d9432b8f1cb3d23 [diff] [blame] |
Use only 4 local test jobs on macOS testing machines, as they are slower.
diff --git a/buildkite/bazelci.py b/buildkite/bazelci.py index 45548db..78add78 100755 --- a/buildkite/bazelci.py +++ b/buildkite/bazelci.py
@@ -1613,7 +1613,9 @@ return "75" elif platform == "windows": return "8" - elif platform == "macos": + elif platform.startswith("macos") and THIS_IS_TESTING: + return "4" + elif platform.startswith("macos"): return "8" return "12"