diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2016-02-04 14:48:26 -0500 |
---|---|---|
committer | Aric Gardner <agardner@linuxfoundation.org> | 2016-02-05 11:01:40 -0500 |
commit | 0558c585978c1d37aa74436bb09f4d5d4c2c1aad (patch) | |
tree | 1ef50980bc5a8089dcab88191a22600e3ccd10dd /jjb | |
parent | 0b83e52cc8e0e1dcac257fe68c39ebaa3c2a5831 (diff) |
Need to have reviews under /$PROJECT/$review_number
If all the reviews are just review/$review_number
I dont have sufficent information to search reviews per project
this is needed for the new search tool
If this change is merged I will need to delete everything under /review/
this will lose current review artifacts, but allow future ones to be
searchable in the upcomming interface
Please comment if you can think of a better way to do this.
note: at some past point reviews were in their project folder.
Change-Id: I0778ca92a0a0922c6e5f2749edd0c9f6a2dcc591
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/releng-macros.yaml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/jjb/releng-macros.yaml b/jjb/releng-macros.yaml index 5d9570705..b43a76d5f 100644 --- a/jjb/releng-macros.yaml +++ b/jjb/releng-macros.yaml @@ -195,7 +195,7 @@ echo "###########################" echo - gs_base="artifacts.opnfv.org/review" + gs_base="artifacts.opnfv.org/$PROJECT/review" gs_path="$gs_base/$GERRIT_CHANGE_NUMBER" local_path="upload/$GERRIT_CHANGE_NUMBER" @@ -283,6 +283,13 @@ [[ $GERRIT_CHANGE_NUMBER =~ .+ ]] + gs_path="artifacts.opnfv.org/$PROJECT/review/$GERRIT_CHANGE_NUMBER" + + if gsutil ls "gs://$gs_path" > /dev/null 2>&1 ; then + echo + echo "Deleting Out-of-dated Documents..." + gsutil -m rm -r "gs://$gs_path" + fi gs_path="artifacts.opnfv.org/review/$GERRIT_CHANGE_NUMBER" if gsutil ls "gs://$gs_path" > /dev/null 2>&1 ; then |