summaryrefslogtreecommitdiffhomepage
path: root/kokoro/run_tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'kokoro/run_tests.sh')
-rwxr-xr-xkokoro/run_tests.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/kokoro/run_tests.sh b/kokoro/run_tests.sh
index c5c6a7780..fbe353a1e 100755
--- a/kokoro/run_tests.sh
+++ b/kokoro/run_tests.sh
@@ -197,6 +197,16 @@ finish() {
exit ${exit_code}
}
+# Run bazel in a docker container
+build_in_docker() {
+ cd ${WORKSPACE_DIR}
+ bazel clean
+ bazel shutdown
+ make
+ make runsc
+ make bazel-shutdown
+}
+
########
# MAIN #
########
@@ -220,6 +230,7 @@ main() {
# Build other flavors too.
build_everything dbg
+ build_in_docker
# No need to call "finish" here, it will happen at exit.
}