• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2set -eux
3
4bazel clean
5bazel build --compilation_mode=dbg -- //:all
6bazel test  --compilation_mode=dbg -- //:all \
7  -//:dfa_test \
8  -//:exhaustive1_test \
9  -//:exhaustive2_test \
10  -//:exhaustive3_test \
11  -//:exhaustive_test \
12  -//:random_test
13
14bazel clean
15bazel build --compilation_mode=opt -- //:all
16bazel test  --compilation_mode=opt -- //:all \
17  -//:dfa_test \
18  -//:exhaustive1_test \
19  -//:exhaustive2_test \
20  -//:exhaustive3_test \
21  -//:exhaustive_test \
22  -//:random_test
23
24exit 0
25