From ffab4f773e77204e96cd6c37cbeb1979ad41e302 Mon Sep 17 00:00:00 2001 From: Jerry Flood Date: Tue, 2 May 2017 16:00:03 -0400 Subject: Add the demo git to the build. robot repo should use demo repo as a submodule instead of a copy of their stuff. Coordination is needed between demo Also move the shell script out of the template as per review Issue: TEST-14 Change-Id: I0c1d8d9d3b1317d1c099c8fdaafa389af71d7b60 Signed-off-by: Jerry Flood --- jjb/testsuite/testsuite-docker.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 jjb/testsuite/testsuite-docker.sh (limited to 'jjb/testsuite/testsuite-docker.sh') diff --git a/jjb/testsuite/testsuite-docker.sh b/jjb/testsuite/testsuite-docker.sh new file mode 100644 index 000000000..33eea4f81 --- /dev/null +++ b/jjb/testsuite/testsuite-docker.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# +echo '============== CALLING SCRIPT TO CREATE DOCKER IMAGES =================' +cp $WORKSPACE/docker/* . +docker -D build -t openecomp/testsuite . +export REPO="nexus3.onap.org:10003" +for tag in $tags +do + docker tag openecomp/testsuite:latest $REPO/openecomp/testsuite:$tag + docker push $REPO/openecomp/testsuite:$tag +done -- cgit 1.2.3-korg