From a83d55ee4b2b2b40346792573b9d7a44fd4c7a97 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Thu, 5 Nov 2020 13:16:37 -0800 Subject: [PATCH] Exclude Clang tests from MacOS to avoid Kokoro timeouts. The real solution is to have each Kokoro build as part of a separate job that runs in parallel. --- kokoro/ubuntu/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kokoro/ubuntu/build.sh b/kokoro/ubuntu/build.sh index 216b71bf8f..64c6ce64c0 100644 --- a/kokoro/ubuntu/build.sh +++ b/kokoro/ubuntu/build.sh @@ -30,11 +30,11 @@ if which gcc; then fi if which clang; then - CC=clang bazel test --test_output=errors ... - CC=clang bazel test --test_output=errors -c opt ... -- -benchmarks:benchmark - CC=clang bazel test --test_output=errors ... --//:fasttable_enabled=true -- -cmake:test_generated_files - if [[ $(uname) = "Linux" ]]; then + CC=clang bazel test --test_output=errors ... + CC=clang bazel test --test_output=errors -c opt ... -- -benchmarks:benchmark + CC=clang bazel test --test_output=errors ... --//:fasttable_enabled=true -- -cmake:test_generated_files + CC=clang bazel test --test_output=errors --config=m32 ... -- -benchmarks:benchmark CC=clang bazel test --test_output=errors --config=asan ... -- -benchmarks:benchmark