blob: 7295ec6a84792ace3081a806d7c8fc4e64b8b775 [file] [log] [blame]
#!/bin/bash
set -eux
bazel clean
bazel build --compilation_mode=dbg -- //:all
bazel test --compilation_mode=dbg -- //:all \
-//:dfa_test \
-//:exhaustive1_test \
-//:exhaustive2_test \
-//:exhaustive3_test \
-//:exhaustive_test \
-//:random_test
bazel clean
bazel build --compilation_mode=opt -- //:all
bazel test --compilation_mode=opt -- //:all \
-//:dfa_test \
-//:exhaustive1_test \
-//:exhaustive2_test \
-//:exhaustive3_test \
-//:exhaustive_test \
-//:random_test
exit 0