summaryrefslogtreecommitdiffhomepage
path: root/kokoro
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2018-06-26 19:04:51 -0700
committerShentubot <shentubot@google.com>2018-06-26 19:05:50 -0700
commitc186e408cc61cbefd6d72c2ff3e9d629572570db (patch)
tree1f9017672c35fa292a800fa128f8d89834ef7037 /kokoro
parentdc33d71f8cf11bede2b224f4be730916f7faac81 (diff)
Add KVM, overlay and host network to image tests
PiperOrigin-RevId: 202236006 Change-Id: I4ea964a70fc49e8b51c9da27d77301c4eadaae71
Diffstat (limited to 'kokoro')
-rwxr-xr-xkokoro/gcp_ubuntu/run_tests.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/kokoro/gcp_ubuntu/run_tests.sh b/kokoro/gcp_ubuntu/run_tests.sh
index 2f5e375eb..5554350da 100755
--- a/kokoro/gcp_ubuntu/run_tests.sh
+++ b/kokoro/gcp_ubuntu/run_tests.sh
@@ -46,6 +46,9 @@ exit_code=${?}
if [[ ${exit_code} -eq 0 ]]; then
# image_test is tagged manual
bazel test --test_output=errors --test_env=RUNSC_RUNTIME=${runtime} //runsc/test/image:image_test
+ bazel test --test_output=errors --test_env=RUNSC_RUNTIME=${runtime}-kvm //runsc/test/image:image_test
+ bazel test --test_output=errors --test_env=RUNSC_RUNTIME=${runtime}-nethost //runsc/test/image:image_test
+ bazel test --test_output=errors --test_env=RUNSC_RUNTIME=${runtime}-overlay //runsc/test/image:image_test
exit_code=${?}
fi