From 3237d8effdc00ee36937a70136e774a3f9124a35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20R=2E=20Sede=C3=B1o?= Date: Tue, 24 Sep 2024 09:00:27 -0400 Subject: [PATCH] Unpin clang in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alejandro R. SedeƱo --- .bazelrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.bazelrc b/.bazelrc index f11e1de..bdea91b 100644 --- a/.bazelrc +++ b/.bazelrc @@ -4,6 +4,10 @@ common:ci --noshow_progress common:ci --noshow_loading_progress common:ci --test_output=errors +# Don't pin clang in CI. +build:ci --action_env=CC=clang +build:ci --action_env=CXX=clang++ + # Required by envoy and its tests build --define=grpc_no_ares=true build --cxxopt=-std=c++17 --host_cxxopt=-std=c++17