2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2016 Orange and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
13 export PATH=$PATH:/usr/local/bin/
15 git_sha1="$(git rev-parse HEAD)"
16 res_build_date=${1:-$(date -u +"%Y-%m-%d_%H-%M-%S")}
18 branch=${GIT_BRANCH##*/}
20 dir_result="${HOME}/opnfv/$project/results"
21 # src: https://wiki.opnfv.org/display/INF/Hardware+Infrastructure
22 # + intel-pod3 (vsperf)
24 'lf-pod1' 'lf-pod2' 'intel-pod2' 'intel-pod3' \
25 'intel-pod5' 'intel-pod6' 'intel-pod7' 'intel-pod8' \
26 'ericsson-pod2' 'huawei-pod1')
28 if [[ ! " ${node_list[@]} " =~ " ${testbed} " ]]; then
29 echo "This is not a CI POD. Aborting pushing the logs to artifacts."
33 if [[ "$branch" == "master" ]]; then
34 project_artifact=logs/$project/$testbed/$res_build_date
36 project_artifact=logs/$project/$testbed/$branch/$res_build_date
39 # create the folder to store the results
42 # copy folder to artifact
43 if [ -d "$dir_result" ]; then
44 if [ "$(ls -A $dir_result)" ]; then
48 echo "Not possible to push results to artifact: gsutil not installed";
50 gsutil ls gs://artifacts.opnfv.org/"$project"/ &>/dev/null
52 echo "Not possible to push results to artifact: gsutil not installed.";
54 echo "copy result files to artifact $project_artifact"
55 gsutil -m cp -r "$dir_result" gs://artifacts.opnfv.org/"$project_artifact"/
59 echo "Result folder is empty"