blob: 2a253b555132289cb30dd21da9c4e34d00cc790b (
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
|
#!/bin/bash
set -e
set -o pipefail
export PATH=$PATH:/usr/local/bin/
echo
echo "Build"
echo "-----"
echo
make
echo
echo "Upload"
echo "------"
echo
# NOTE: make sure source parameters for GS paths are not empty.
[[ $GERRIT_CHANGE_NUMBER =~ .+ ]]
[[ $GERRIT_PROJECT =~ .+ ]]
[[ $GERRIT_BRANCH =~ .+ ]]
gs_path_review="artifacts.opnfv.org/review/$GERRIT_CHANGE_NUMBER"
if [[ $GERRIT_BRANCH = "master" ]] ; then
gs_path_branch="artifacts.opnfv.org/$GERRIT_PROJECT"
else
gs_path_branch="artifacts.opnfv.org/$GERRIT_PROJECT/${{GERRIT_BRANCH##*/}}"
fi
if [[ $JOB_NAME =~ "verify" ]] ; then
gsutil cp -r build/* "gs://$gs_path_review/"
echo
echo "Document is available at http://$gs_path_review"
else
if [ -e build/design_docs ]; then
gsutil cp -r build/design_docs "gs://$gs_path_branch/"
fi
if [ -e build/requirements/html ]; then
gsutil cp -r build/requirements/html "gs://$gs_path_branch/"
fi
if [ -e build/requirements/latex ]; then
gsutil cp -r build/requirements/latex/*.pdf "gs://$gs_path_branch/"
fi
echo
echo "Latest document is available at http://$gs_path_branch"
if gsutil ls "gs://$gs_path_review" > /dev/null 2>&1 ; then
echo
echo "Deleting Out-of-dated Documents..."
gsutil rm -r "gs://$gs_path_review"
fi
fi
|