summaryrefslogtreecommitdiffstats
path: root/ci/envs/host-config
diff options
context:
space:
mode:
authorkalyanreddy <reddyx.gundarapu@intel.com>2017-03-10 09:34:54 -0800
committerKalyan reddy Gundarapu <reddyx.gundarapu@intel.com>2017-03-15 07:03:45 +0000
commita9df9f4fdafc08c33d1debd0e4999e58cdbf4b31 (patch)
treecaf655e710a568fa905e77abee198ae0645e9882 /ci/envs/host-config
parentaf712826966ee75ba5ac466a6c192580abdf0c29 (diff)
This patch includes scripts and configuration files for
executing packet forwarding test cases as a part of kvmfornfv daily job and printing the results. Change-Id: I484ce89c4821d03cb997c774f014c59a10dc275e Signed-off-by: Gundarapu Kalyan Reddy <reddyx.gundarapu@intel.com>
Diffstat (limited to 'ci/envs/host-config')
-rwxr-xr-xci/envs/host-config21
1 files changed, 21 insertions, 0 deletions
diff --git a/ci/envs/host-config b/ci/envs/host-config
index 727ba1574..e696fcde1 100755
--- a/ci/envs/host-config
+++ b/ci/envs/host-config
@@ -55,3 +55,24 @@ function copyLogs {
sudo ssh root@${HOST_IP} "cd /root;rm -rf MBWInfo MBWInfo.tar.gz"
}
+function packet_fwd_logs {
+ #Tar and copy logs for uploading to artifacts repository
+ echo "Copying Log files from Node to Jump Server"
+ mkdir -p $WORKSPACE/build_output/log/packet_fwd
+ scp -r root@${HOST_IP}:/tmp/packet_fwd_logs $WORKSPACE/build_output/log/packet_fwd
+ #removing collected logs on the node after copying.
+ sudo ssh root@${HOST_IP} "cd /tmp;rm -rf packet_fwd_logs"
+}
+
+function packet_fwd_exit {
+ exitCode=$1
+ TIMESTAMP=$(date -u +"%Y-%m-%d_%H-%M-%S")
+ cd $WORKSPACE/build_output/
+ if [ -d log ];then
+ tar -czvf log-${TIMESTAMP}.tar.gz log
+ echo "Uploading packet forwarding logs and results"
+ gsutil cp -r log-*.tar.gz gs://artifacts.opnfv.org/kvmfornfv/packet_fwd_${TIMESTAMP} > $WORKSPACE/build_output/gsutil.log 2>&1
+ echo "http://artifacts.opnfv.org/kvmfornfv/packet_fwd_${TIMESTAMP}"
+ fi
+ exit $exitCode
+}