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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2016 Linux Foundation 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
##############################################################################
#export PATH=${PATH}:/root/gsutil
#Step Generate index.html
if [ -f index.html ] ; then
rm -f index.html
fi
OUTPUT="index.html"
for index in $(gsutil ls -l gs://artifacts.opnfv.org | grep -v logs | grep -v review | awk 'NF==1'| sed s,gs://artifacts.opnfv.org/,,)
do
echo $index
echo "<LI><a href=\"${index%/*}.html\">"$index"</a></LI>" >> $OUTPUT
done
#functest logs##########################
for project in functest vswitchperf
do
for index in $(gsutil ls -l gs://artifacts.opnfv.org/logs/"$project"/ |awk 'NF==1'| sed s,gs://artifacts.opnfv.org/,, )
do
index="$(echo ${index%/*} | sed s,/,_,g)"
echo "<LI><a href=\"http://artifacts.opnfv.org/${index%/*}.html\">"$index"</a></LI>" >> $OUTPUT
done
done
#End step 1
#####################################
#genrate html files for all project except vswitchperf
for index in $(gsutil ls -l gs://artifacts.opnfv.org | grep -v logs |awk 'NF==1'| sed s,gs://artifacts.opnfv.org/,,)
do
OUTPUT=${index%/*}.html
rm -f $OUTPUT
for filepath in $(gsutil ls -R gs://artifacts.opnfv.org/"$index" | sed s,gs://artifacts.opnfv.org/,, | grep -v "favicon.ico" | grep -v "gsutil" ); do
echo $filepath
if [[ $filepath =~ "/:" ]]; then
path=$(echo $filepath| sed s,/:,,g)
echo "<UL>" >> $OUTPUT
echo "<LI>$path</LI>" >> $OUTPUT
echo "</UL>" >> $OUTPUT
else
echo "<LI><a href=\"http://artifacts.opnfv.org/$filepath\">"$filepath"</a></LI>" >> $OUTPUT
fi
done
gsutil cp $OUTPUT gs://artifacts.opnfv.org/
gsutil -m setmeta \
-h "Content-Type:text/html" \
-h "Cache-Control:private, max-age=0, no-transform" \
gs://artifacts.opnfv.org/$OUTPUT \
done
#generate file for vswitch perf (I dont know what happend here but there is a wierd character in this bucket)
index=vswitchperf
OUTPUT=${index%/*}.html
rm -f $OUTPUT
for filepath in $(gsutil ls -R gs://artifacts.opnfv.org/"$index" | sed s,gs://artifacts.opnfv.org/,, | grep -v "favicon.ico" | grep -v "gsutil" ); do
echo $filepath
if [[ $filepath =~ "/:" ]]; then
path=$(echo $filepath| sed s,/:,,g)
echo "<UL>" >> $OUTPUT
echo "<LI>$path</LI>" >> $OUTPUT
echo "</UL>" >> $OUTPUT
else
echo "<LI><a href=\"http://artifacts.opnfv.org/$filepath\">"$filepath"</a></LI>" >> $OUTPUT
fi
done
gsutil cp $OUTPUT gs://artifacts.opnfv.org/
gsutil -m setmeta \
-h "Content-Type:text/html" \
-h "Cache-Control:private, max-age=0, no-transform" \
gs://artifacts.opnfv.org/$OUTPUT \
# Gerate html for logs
for project in functest vswitchperf
do
for index in $(gsutil ls -l gs://artifacts.opnfv.org/logs/"$project"/ |awk 'NF==1'| sed s,gs://artifacts.opnfv.org/,, )
do
OUTPUT="$(echo ${index%/*}.html | sed s,/,_,g)"
echo $OUTPUT
rm -f $OUTPUT
for filepath in $(gsutil ls -R gs://artifacts.opnfv.org/"$index" | sed s,gs://artifacts.opnfv.org/,, | grep -v "favicon.ico" | grep -v "gsutil" ); do
echo $filepath
if [[ $filepath =~ "/:" ]]; then
path=$(echo $filepath| sed s,/:,,g)
echo "<UL>" >> $OUTPUT
echo "<LI>$path</LI>" >> $OUTPUT
echo "</UL>" >> $OUTPUT
else
echo "<LI><a href=\"http://artifacts.opnfv.org/$filepath\">"$filepath"</a></LI>" >> $OUTPUT
fi
done
gsutil cp $OUTPUT gs://artifacts.opnfv.org/
gsutil -m setmeta \
-h "Content-Type:text/html" \
-h "Cache-Control:private, max-age=0, no-transform" \
gs://artifacts.opnfv.org/$OUTPUT \
done
done
OUTPUT="index.html"
echo "<p> Generated on $(date) </p>" >> $OUTPUT
cat <<EOF >> $OUTPUT
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-831873-26', 'auto');
ga('send', 'pageview');
</script>
EOF
#copy and uplad index file genrated in first step, last
gsutil cp $OUTPUT gs://artifacts.opnfv.org/
gsutil -m setmeta \
-h "Content-Type:text/html" \
-h "Cache-Control:private, max-age=0, no-transform" \
gs://artifacts.opnfv.org/$OUTPUT \
|