summaryrefslogtreecommitdiffstats
path: root/jjb
diff options
context:
space:
mode:
authorAndrew Grimberg <agrimberg@linuxfoundation.org>2017-03-29 15:49:55 +0000
committerGerrit Code Review <gerrit@onap.org>2017-03-29 15:49:55 +0000
commit8388b12e37e89ca1f94140ad0237280eb627d251 (patch)
tree3123633adf46a13ce87d72d4aa1a913832d03538 /jjb
parent4de68af12d31679883578be961b3d9f42465d11b (diff)
parentb6850ad95bef411d9f42fc866188234b72d2ce5e (diff)
Merge "Fixing whitespace as per review"
Diffstat (limited to 'jjb')
-rw-r--r--jjb/global-templates-python.yaml10
1 files changed, 8 insertions, 2 deletions
diff --git a/jjb/global-templates-python.yaml b/jjb/global-templates-python.yaml
index 13c6ccd1f..248d4561f 100644
--- a/jjb/global-templates-python.yaml
+++ b/jjb/global-templates-python.yaml
@@ -168,11 +168,17 @@
global-settings-file: 'global-settings'
settings-file: '{mvn-settings}'
+ - inject:
+ properties-file: version.properties
+
- docker-login
- shell: |
cp $WORKSPACE/docker/* .
docker -D build -t openecomp/testsuite .
export REPO="nexus3.onap.org:10003"
- docker tag openecomp/testsuite:latest $REPO/openecomp/testsuite:1.0-STAGING-latest
- docker push $REPO/openecomp/testsuite:1.0-STAGING-latest
+ for tag in $tags
+ do
+ docker tag openecomp/testsuite:latest $REPO/openecomp/testsuite:$tag
+ docker push $REPO/openecomp/testsuite:$tag
+ done