From bb2815b6bbb09bf250c345f184efc7d9f665a4e7 Mon Sep 17 00:00:00 2001 From: Denes Nemeth Date: Tue, 15 May 2018 22:12:54 +0200 Subject: Store staging and snapshot artifict in same repo ONAP community is not using the a separate repo for storing snapshot and staging artifacts. The change parameterises the docker build to be able to separately control the target repository and the build artifact type (snapshot / staging). It will also store the staging and snapshots in the same repo (10003). Change-Id: I505023a7cdab90fa8ecfeb540f6306f0e19c3d6d Signed-off-by: Denes Nemeth Issue-ID: VFC-728 --- shell/docker-build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'shell') diff --git a/shell/docker-build.sh b/shell/docker-build.sh index 080a8b638..1cb71d3ff 100644 --- a/shell/docker-build.sh +++ b/shell/docker-build.sh @@ -6,13 +6,13 @@ set -e -o pipefail FULL_DATE=`date +'%Y%m%dT%H%M%S'` IMAGE_VERSION=`xmlstarlet sel -N "x=http://maven.apache.org/POM/4.0.0" -t -v "/x:project/x:version" pom.xml | cut -c1-5` -case "$DOCKERREGISTRY" in - "$DOCKER_REGISTRY:10004") +case "$BUILD_MODE" in + "STAGING") DOCKER_TAG="$IMAGE_VERSION"-STAGING-"$FULL_DATE"Z DOCKER_LATEST_TAG="$IMAGE_VERSION"-STAGING-latest echo "Using tags $DOCKER_TAG and $DOCKER_LATEST_TAG" ;; - "$DOCKER_REGISTRY:10003") + "SNAPSHOT") DOCKER_TAG="$IMAGE_VERSION"-SNAPSHOT-"$FULL_DATE"Z DOCKER_LATEST_TAG="$IMAGE_VERSION"-SNAPSHOT-latest echo "Using tags $DOCKER_TAG and $DOCKER_LATEST_TAG" -- cgit 1.2.3-korg