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.
pull/13171/head
Joshua Haberman 4 years ago
parent 73fcfe9ed0
commit a83d55ee4b
  1. 8
      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

Loading…
Cancel
Save