Skip to content

Commit

Permalink
Switch from //... to //:all when building with Bazel.
Browse files Browse the repository at this point in the history
Change-Id: I7db5fec22d6942964e8ecd3bc6987c1b0190a206
Reviewed-on: https://code-review.googlesource.com/c/re2/+/43250
Reviewed-by: Paul Wankadia <[email protected]>
  • Loading branch information
junyer committed Jul 31, 2019
1 parent d5d32aa commit 67bce69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kokoro/bazel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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 \
Expand Down

0 comments on commit 67bce69

Please sign in to comment.