Update script to push rally html pages in artifacts 17/4217/2
authorMorgan Richomme <morgan.richomme@orange.com>
Thu, 10 Dec 2015 17:42:51 +0000 (18:42 +0100)
committerMorgan Richomme <morgan.richomme@orange.com>
Fri, 11 Dec 2015 08:03:09 +0000 (09:03 +0100)
Change-Id: I8ff60731bf1ba3d9442d146e41ff45472c5e62d6
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
jjb/functest/functest.yml
jjb/functest/res-build.sh

index 9e5e71b..aa0426a 100644 (file)
             description: "Override GIT_BASE"
         - string:
             name: LAB_CONFIG
-            default: "/joid/ci/odl/juju-deployer/scripts/cloud/"
+            default: "/home/ubuntu/joid_config/admin-openrc"
             description: "Openstack credentials on the dev lab"
 
 - parameter:
index 304d2cc..a9c5dbe 100644 (file)
@@ -2,25 +2,35 @@
 set -e
 set -o pipefail
 
-project="$(git remote -v | head -n1 | awk '{{print $2}}' | sed -e 's,.*:\(.*/\)\?,,' -e 's/\.git$//')"
 export PATH=$PATH:/usr/local/bin/
 
 git_sha1="$(git rev-parse HEAD)"
 res_build_date=$(date -u +"%Y-%m-%d_%H-%M-%S")
 
-# set once, functe config file could be use to avoid such hardcoded path
-dir_result="$HOME/functest/results"
+# Result directory in the docker file
+# to be used only with CI
+dir_result="/home/opnfv/functest/results"
+
+# Clean the results directory
+# remove json file for rally, export only html
+# json should have been pushed into the DB
+rm -f $dir_result/rally/*.json
 
 # Several information are required: date and testbed
 # date is generated by functest so on the artifact, the results shall be under functest/<testbed id>/date/
-testbed="$(hostname)"
-project_artifact=$project/$testbed/$res_build_date
+testbed=$NODE_NAME
+
+project_artifact=functest/$testbed/$res_build_date
 
 # copy folder to artifact
 if [ -d "$dir_result" ]; then
     if [ "$(ls -A $dir_result)" ]; then
           echo "copy result files to artifact $project_artifact"
-          gsutil cp -r "$dir_result" gs://artifacts.opnfv.org/"$project_artifact"/
+          gsutil -m cp -r "$dir_result" gs://artifacts.opnfv.org/"$project_artifact"/
+
+          # delete local results
+          # should not be useful as the container is about to die...just in case
+          rm -Rf /home/opnfv/functest/results/*
     else
           echo "Result folder is empty"
     fi