blob: 331cbd9428ee6908728e8a3ad77892a936f67e7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2016 Orange and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
set -e
set -o pipefail
export PATH=$PATH:/usr/local/bin/
git_sha1="$(git rev-parse HEAD)"
res_build_date=${1:-$(date -u +"%Y-%m-%d_%H-%M-%S")}
project=$PROJECT
branch=${GIT_BRANCH##*/}
testbed=$NODE_NAME
dir_result="${HOME}/opnfv/$project/results/$branch"
if [[ "$branch" == "master" ]]; then
project_artifact=logs/$project/$testbed/$res_build_date
else
project_artifact=logs/$project/$testbed/$branch/$res_build_date
fi
# create the folder to store the results
mkdir -p $dir_result
# copy folder to artifact
if [ -d "$dir_result" ]; then
if [ "$(ls -A $dir_result)" ]; then
set +e
gsutil&>/dev/null
if [ $? != 0 ]; then
echo "Not possible to push results to artifact: gsutil not installed";
else
gsutil ls gs://artifacts.opnfv.org/"$project_artifact"/ &>/dev/null
if [ $? != 0 ]; then
echo "Not possible to push results to artifact: wrong credentials.";
else
echo "copy result files to artifact $project_artifact"
gsutil -m cp -r "$dir_result" gs://artifacts.opnfv.org/"$project_artifact"/
fi
fi
else
echo "Result folder is empty"
fi
fi
|