Alok Bhatt | 677f4fe | 2020-10-16 05:27:57 +0000 | [diff] [blame] | 1 | echo "--> prescan-ric-plt-vespamgr-ubuntu.sh starts" |
| 2 | |
| 3 | #!/bin/bash |
| 4 | # |
| 5 | # Copyright (c) 2019 AT&T Intellectual Property. |
| 6 | # Copyright (c) 2018-2019 Nokia. |
| 7 | # |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | # you may not use this file except in compliance with the License. |
| 10 | # You may obtain a copy of the License at |
| 11 | # |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | # See the License for the specific language governing permissions and |
| 18 | # limitations under the License. |
| 19 | # |
| 20 | # This source code is part of the near-RT RIC (RAN Intelligent Controller) |
| 21 | # platform project (RICP). |
| 22 | # |
| 23 | |
| 24 | |
| 25 | set -e |
| 26 | set -x |
| 27 | # Load modules |
| 28 | GO111MODULE=on go mod download |
| 29 | export GOPATH=$HOME/go |
| 30 | export PATH=$GOPATH/bin:$GOROOT/bin:$PATH |
| 31 | |
| 32 | # Run vesmgr UT & Coverage |
| 33 | go test ./... -v -coverprofile cover.out |
| 34 | |
| 35 | # setup version tag |
| 36 | if [ -f container-tag.yaml ] |
| 37 | then |
| 38 | tag=$(grep "tag:" container-tag.yaml | awk '{print $2}') |
| 39 | else |
| 40 | tag="-" |
| 41 | fi |
| 42 | |
| 43 | hash=$(git rev-parse --short HEAD || true) |
| 44 | |
| 45 | # Install vesmgr |
| 46 | go install -ldflags "-X main.Version=$tag -X main.Hash=$hash" -v ./cmd/vesmgr |