diff options
author | Jerry Flood <jf9860@att.com> | 2017-03-29 09:36:25 -0400 |
---|---|---|
committer | Jerry Flood <jf9860@att.com> | 2017-03-29 11:46:53 -0400 |
commit | b6850ad95bef411d9f42fc866188234b72d2ce5e (patch) | |
tree | d0b702588f020c61b57a6c4911c119656192e595 /jjb | |
parent | 48028ab8d0ec9725d0539701ef013bad263f2b47 (diff) |
Fixing whitespace as per review
Change-Id: I46af01f3906e6b00d12caa4c7cd12f9388fb2e30
Signed-off-by: Jerry Flood <jf9860@att.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/global-templates-python.yaml | 10 |
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 |