summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyota MIBU <r-mibu@cq.jp.nec.com>2015-11-23 13:50:52 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-11-23 13:50:52 +0000
commit9096c5c354d918e2c5685f78d9be790ddaf1fcc3 (patch)
treec5a681ade1f07000a69f0d3e37d8723b515fca79
parent9fc2bea9539a7915b1b941334ac128cbefad8579 (diff)
parentc9a4390efe9b77bd3e9eafe5d8a88641d0758ae3 (diff)
Merge "use gsutil m option to improve performance"
-rw-r--r--jjb/releng-macros.yaml24
1 files changed, 11 insertions, 13 deletions
diff --git a/jjb/releng-macros.yaml b/jjb/releng-macros.yaml
index 1c79144a1..9e482dca3 100644
--- a/jjb/releng-macros.yaml
+++ b/jjb/releng-macros.yaml
@@ -201,15 +201,14 @@
gs_path="artifacts.opnfv.org/review/$GERRIT_CHANGE_NUMBER"
- gsutil cp -r docs/output/* "gs://$gs_path"
+ gsutil -m cp -r docs/output/* "gs://$gs_path"
- gsutil ls "gs://$gs_path" | grep -e 'html$' | while read file
- do
- gsutil setmeta \
+ if gsutil ls "gs://$gs_path" | grep -e 'html$' > /dev/null 2>&1 ; then
+ gsutil -m setmeta \
-h "Content-Type:text/html" \
-h "Cache-Control:private, max-age=0, no-transform" \
- "$file"
- done
+ "gs://$gs_path"/**.html
+ fi
gerrit_comment="Document link(s):
$(gsutil ls "gs://$gs_path" | grep -e 'index.html$' -e 'pdf$' | sed 's/^gs/http/')"
@@ -240,15 +239,14 @@
gs_path="artifacts.opnfv.org/{project}/{branch}/docs"
fi
- gsutil cp -r docs/output/* "gs://$gs_path"
+ gsutil -m cp -r docs/output/* "gs://$gs_path"
- gsutil ls "gs://$gs_path" | grep -e 'html$' | while read file
- do
- gsutil setmeta \
+ if gsutil ls "gs://$gs_path" | grep -e 'html$' > /dev/null 2>&1 ; then
+ gsutil -m setmeta \
-h "Content-Type:text/html" \
-h "Cache-Control:private, max-age=0, no-transform" \
- "$file"
- done
+ "gs://$gs_path"/**.html
+ fi
gerrit_comment="Document link(s):
$(gsutil ls "gs://$gs_path" | grep -e 'index.html$' -e 'pdf$' | sed 's/^gs/http/')"
@@ -271,5 +269,5 @@
if gsutil ls "gs://$gs_path" > /dev/null 2>&1 ; then
echo
echo "Deleting Out-of-dated Documents..."
- gsutil rm -r "gs://$gs_path_review"
+ gsutil -m rm -r "gs://$gs_path_review"
fi