speed up testing
diff --git a/buildkite/bazelci.py b/buildkite/bazelci.py
index 7aeddcf..b3521cf 100644
--- a/buildkite/bazelci.py
+++ b/buildkite/bazelci.py
@@ -565,21 +565,25 @@
 
   pipeline_steps = []
   for platform, config in configs.items():
+    if platform == "macos":
+      continue
     pipeline_steps.append(bazel_build_step(platform, "Bazel",
                                            http_config, build_only=True))
   pipeline_steps.append(wait_step())
 
   for platform in supported_platforms():
+    if platform == "macos":
+      continue
     pipeline_steps.append(publish_bazel_binary_step(platform))
 
-  for platform, config in configs.items():
-    pipeline_steps.append(bazel_build_step(platform, "Bazel",
-                                           http_config, test_only=True))
-  for project, config in downstream_projects().items():
-    git_repository = config["git_repository"]
-    http_config = config.get("http_config", None)
-    pipeline_steps.append(upload_project_pipeline_step(project,
-                                                       git_repository, http_config))
+  # for platform, config in configs.items():
+  #   pipeline_steps.append(bazel_build_step(platform, "Bazel",
+  #                                          http_config, test_only=True))
+  # for project, config in downstream_projects().items():
+  #   git_repository = config["git_repository"]
+  #   http_config = config.get("http_config", None)
+  #   pipeline_steps.append(upload_project_pipeline_step(project,
+  #                                                      git_repository, http_config))
 
   print_pipeline(pipeline_steps)