From acb4fd475a29db67cd2318398dadfbaa68472ed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Sat, 5 Feb 2022 06:12:41 +0200 Subject: [PATCH] restructure tests for merging --- ci/test | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) 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 <