| 12345678910111213141516171819 | #!/bin/bashset -euo pipefailWORKSPACE=$(cd "$(dirname "${BASH_SOURCE[0]}")"/../.. && /bin/pwd -P)OS_ARG=${1:?}bazel build //...bazel test --test_output=all //core/... //pull/...bazel test --test_output=all //pull/tests/integration:scrape-test#if [[ "${OS_ARG}" == "macOS"* ]]#then#    bazel test --test_output=all //pull/tests/integration:lint-test#fibazel run -c opt //core/benchmarks
 |