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