aboutsummaryrefslogtreecommitdiff
path: root/kokoro/bazel.sh
blob: 6f259823e5a16c916fadba3e6585b509e4171893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
set -eux

cd git/re2

bazel clean
bazel build --compilation_mode=dbg -- //...
bazel test  --compilation_mode=dbg --test_output=errors -- //... \
  -//:dfa_test \
  -//:exhaustive1_test \
  -//:exhaustive2_test \
  -//:exhaustive3_test \
  -//:exhaustive_test \
  -//:random_test

bazel clean
bazel build --compilation_mode=opt -- //...
bazel test  --compilation_mode=opt --test_output=errors -- //... \
  -//:dfa_test \
  -//:exhaustive1_test \
  -//:exhaustive2_test \
  -//:exhaustive3_test \
  -//:exhaustive_test \
  -//:random_test

exit 0