pw_presubmit: Don't run qemu_clang

Change-Id: I134135834259d11c278d796647c997db0992be2a
Bug: 321
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/43862
Pigweed-Auto-Submit: Rob Mohr <mohrr@google.com>
Reviewed-by: Armando Montanez <amontanez@google.com>
Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com>
diff --git a/pw_presubmit/py/pw_presubmit/pigweed_presubmit.py b/pw_presubmit/py/pw_presubmit/pigweed_presubmit.py
index 10dcf1a..18a3843 100755
--- a/pw_presubmit/py/pw_presubmit/pigweed_presubmit.py
+++ b/pw_presubmit/py/pw_presubmit/pigweed_presubmit.py
@@ -114,8 +114,12 @@
 @filter_paths(endswith=_BUILD_EXTENSIONS)
 def gn_full_qemu_check(ctx: PresubmitContext):
     build.gn_gen(ctx.root, ctx.output_dir)
-    build.ninja(ctx.output_dir, *_at_all_optimization_levels('qemu_gcc'),
-                *_at_all_optimization_levels('qemu_clang'))
+    build.ninja(
+        ctx.output_dir,
+        *_at_all_optimization_levels('qemu_gcc'),
+        # TODO(pwbug/321) Re-enable clang.
+        #*_at_all_optimization_levels('qemu_clang'),
+    )
 
 
 @filter_paths(endswith=_BUILD_EXTENSIONS)