blob: 2839e5c381d9a9d7568dfabd3a27c50358dcee57 [file] [log] [blame]
Bilal A9f54c002020-01-16 16:12:19 +00001#!/bin/bash
2# ============LICENSE_START=======================================================
3# Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
4# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
19
20source ${SCRIPTS}/policy/config/policy-csit.conf
21
Jim Hahnf340ddb2020-04-15 08:43:54 -040022rm -rf ${WORKSPACE}/dmaap-sim
23mkdir ${WORKSPACE}/dmaap-sim
24cd ${WORKSPACE}/dmaap-sim
25
Bilal A9f54c002020-01-16 16:12:19 +000026POLICY_MODELS_VERSION_EXTRACT="$(curl -q --silent https://git.onap.org/policy/models/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
27export POLICY_MODELS_VERSION="${POLICY_MODELS_VERSION_EXTRACT}"
28echo ${POLICY_MODELS_VERSION}
29
30# download dmaap tarball and build docker image
31git clone --depth 1 https://gerrit.onap.org/r/policy/models -b ${GERRIT_BRANCH}
32cd models/models-sim/models-sim-dmaap
33item=`curl --silent -L ${NEXUS_URL}/org/onap/policy/models/sim/policy-models-sim-dmaap/${POLICY_MODELS_VERSION} | egrep 'policy-models-sim-dmaap-.*tarball' | cut '-d"' -f2 | egrep 'gz$' | sort | tail -1`
34mkdir target
35curl -L $item -o target/policy-models-sim-dmaap-${POLICY_MODELS_VERSION}-tarball.tar.gz
36bash ./src/main/package/docker/docker_build.sh
37cd ${WORKSPACE}