blob: b3869fcf7a88214143c1f40396b5e970840ae641 (
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
|
#!/bin/bash
project="genesis"
export PATH=$PATH:/usr/local/bin/
files=()
while read -r -d ''; do
files+=("$REPLY")
done < <(find . -type f -iname '*.rst' -print0)
for file in "${{files[@]}}"; do
file_cut="${{file%.*}}"
gs_cp_folder="$(echo "$file"| cut -d "/" -f2,3)"
html_file=$file_cut".html"
echo "rst2html $file"
rst2html $file | gsutil cp -L gsoutput.txt - \
gs://artifacts.opnfv.org/"$project"/"$gs_cp_folder"/$(basename "$html_file")
gsutil setmeta -h "Content-Type:text/html" \
-h "Cache-Control:private, max-age=0, no-transform" \
gs://artifacts.opnfv.org/"$project"/"$gs_cp_folder"/$(basename "$html_file")
cat gsoutput.txt
rm -f gsoutput.txt
pdf_file="$file_cut"".pdf"
echo "rst2pdf $file"
rst2pdf "$file" -o - | gsutil cp -L gsoutput.txt - \
gs://artifacts.opnfv.org/"$project"/"$gs_cp_folder"/$(basename "$pdf_file")
gsutil setmeta -h "Content-Type:application/pdf" \
-h "Cache-Control:private, max-age=0, no-transform" \
gs://artifacts.opnfv.org/"$project"/"$gs_cp_folder"/$(basename "$pdf_file")
cat gsoutput.txt
rm -f gsoutput.txt
done
|