From 99c42ee4c9ec58e0f83ea32ec3f5c1dd78288f36 Mon Sep 17 00:00:00 2001 From: Roman Fursov Date: Thu, 12 Oct 2023 11:31:17 +0000 Subject: [PATCH] Add step with running tests to the build script (#62) --- .gitignore | 1 + kokoro/scripts/build.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 8ab960f..74016c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .idea .ijwb +.aswb *.sw[a-z] bazel-* .DS_Store diff --git a/kokoro/scripts/build.sh b/kokoro/scripts/build.sh index 072e1ad..840fd42 100755 --- a/kokoro/scripts/build.sh +++ b/kokoro/scripts/build.sh @@ -3,4 +3,6 @@ # Fail on any error. set -e cd ../../ + +bazel test //... bazel build //dist:all