diff --git a/ci/test b/ci/test index 092dde9..c192d9e 100755 --- a/ci/test +++ b/ci/test @@ -23,20 +23,12 @@ while read -r action platform toolchain run_under; do //test/... \ ) - case "$action" in - test) - _run bazel build "${args[@]}" - _run bazel test --build_tests_only "${args[@]}" - ;; - build) - _run bazel build "${args[@]}" - ;; - esac + _run bazel "$action" "${args[@]}" done <