Add jobs to verify changes sent to infra/test repo
This change adds jobs to verify changes sent to infra/test repo in
order to ensure changes do not break things as infra/test repo will
be used for gating, post-merge and periodic jobs and have blocking
effect.
The job is expected to run on a slave with an existing deployment.
See the comments in cloud-infra-verify-test.yaml for details.
Change-Id: Ibe6271bbfd71c0a0d599964189f64619b582da45
diff --git a/jjb/cloud-infra/cloud-infra-test.sh b/jjb/cloud-infra/cloud-infra-test.sh
index d12c943..952a7fd 100644
--- a/jjb/cloud-infra/cloud-infra-test.sh
+++ b/jjb/cloud-infra/cloud-infra-test.sh
@@ -26,14 +26,10 @@
# executed when the job that uses this script gets triggered due to Gerrit change.
#
# Logic in this script should be kept at minimum and the changes should be pushed into
-# the cloud infra engine and/or test repo.
+# the cloud infra test test.sh script.
-# The verify job will verify changes coming to other repositories as well such as
-# infra/swconfig so it needs to be handled here in order to ensure $WORKSPACE contains
-# the actual engine repo clone. This will be added later on.
-
-# we currently only do Hello World here and this will be adapted to do test instead
+# execute cloud engine test.sh script
cd $WORKSPACE
-echo "Hello World!"
+./test/test.sh
# vim: set ts=2 sw=2 expandtab: