11 lines
216 B
Bash
Executable file
11 lines
216 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
ROOT_DIR=$(pwd)
|
|
eval $(bb_tmp)
|
|
bazel test //...
|
|
ANY_FAILED=0
|
|
for EXAMPLE in $(ls examples); do
|
|
echo "\nTesting examples/$EXAMPLE"
|
|
cd $ROOT_DIR/examples/$EXAMPLE
|
|
bazel test //...
|
|
done
|