X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Ffunctest%2Fres-build.sh;h=a9c5dbe1b50b051434b90118bb5cf1280b3bdaf7;hb=refs%2Fchanges%2F17%2F4217%2F2;hp=304d2cc34d1a6177983b2fca8f2ab76485dfb9c1;hpb=519fd07ac62534226e0ce406f98e9fa1d277f54d;p=releng.git diff --git a/jjb/functest/res-build.sh b/jjb/functest/res-build.sh index 304d2cc34..a9c5dbe1b 100644 --- a/jjb/functest/res-build.sh +++ b/jjb/functest/res-build.sh @@ -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//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