From 67bce690decdb507b13e14050661f8b9ebfcfe6c Mon Sep 17 00:00:00 2001 From: Paul Wankadia Date: Wed, 31 Jul 2019 02:20:09 -0700 Subject: [PATCH] Switch from //... to //:all when building with Bazel. Change-Id: I7db5fec22d6942964e8ecd3bc6987c1b0190a206 Reviewed-on: https://code-review.googlesource.com/c/re2/+/43250 Reviewed-by: Paul Wankadia --- kokoro/bazel.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kokoro/bazel.sh b/kokoro/bazel.sh index 6f259823e..95aee2e55 100755 --- a/kokoro/bazel.sh +++ b/kokoro/bazel.sh @@ -4,8 +4,8 @@ set -eux cd git/re2 bazel clean -bazel build --compilation_mode=dbg -- //... -bazel test --compilation_mode=dbg --test_output=errors -- //... \ +bazel build --compilation_mode=dbg -- //:all +bazel test --compilation_mode=dbg --test_output=errors -- //:all \ -//:dfa_test \ -//:exhaustive1_test \ -//:exhaustive2_test \ @@ -14,8 +14,8 @@ bazel test --compilation_mode=dbg --test_output=errors -- //... \ -//:random_test bazel clean -bazel build --compilation_mode=opt -- //... -bazel test --compilation_mode=opt --test_output=errors -- //... \ +bazel build --compilation_mode=opt -- //:all +bazel test --compilation_mode=opt --test_output=errors -- //:all \ -//:dfa_test \ -//:exhaustive1_test \ -//:exhaustive2_test \