blob: 6cc7a7c9ef3a5e48e0921bd5077856ac6349cd94 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#!/bin/bash
export PYTHONPATH="${PYTHONPATH}:./reporting"
export CONFIG_REPORTING_YAML=./reporting/reporting.yaml
declare -a versions=(danube master)
declare -a projects=(functest storperf yardstick qtip vsperf bottlenecks)
project=$1
reporting_type=$2
# create Directories if needed
for i in "${versions[@]}"
do
for j in "${projects[@]}"
do
mkdir -p display/$i/$j
done
done
# copy images, js, css, 3rd_party
cp -Rf 3rd_party display
cp -Rf css display
cp -Rf html/* display
cp -Rf img display
cp -Rf js display
# if nothing is precised run all the reporting generation
# projet | option
# $1 | $2
# functest | status, vims, tempest
# yardstick | status
# storperf | status
# qtip | status
# vsperf | status
function report_project()
{
project=$1
dir=$2
type=$3
echo "********************************"
echo " $project reporting "
echo "********************************"
python ./reporting/$dir/reporting-$type.py
if [ $? ]; then
echo "$project reporting $type...OK"
else
echo "$project reporting $type...KO"
fi
}
if [ -z "$1" ]; then
echo "********************************"
echo " * Static status reporting *"
echo "********************************"
for i in "${projects[@]}"
do
report_project $i $i "status"
sleep 5
done
report_project "QTIP" "qtip" "status"
echo "Functest reporting vIMS..."
report_project "functest" "functest" "vims"
echo "reporting vIMS...OK"
sleep 5
echo "Functest reporting Tempest..."
report_project "functest" "functest" "tempest"
echo "reporting Tempest...OK"
sleep 5
else
if [ -z "$2" ]; then
reporting_type="status"
fi
report_project $project $project $reporting_type
fi
|