mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 22:43:03 +01:00
25 lines
549 B
Bash
Executable File
25 lines
549 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
|
|
bazel clean
|
|
bazel build --compilation_mode=dbg -- //:all
|
|
bazel test --compilation_mode=dbg --test_output=errors -- //: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 --test_output=errors -- //:all \
|
|
-//:dfa_test \
|
|
-//:exhaustive1_test \
|
|
-//:exhaustive2_test \
|
|
-//:exhaustive3_test \
|
|
-//:exhaustive_test \
|
|
-//:random_test
|
|
|
|
exit 0
|