blob: fba085386b21e9835f86c152795d9818defe952b [file] [log] [blame]
Alok Bhatt677f4fe2020-10-16 05:27:57 +00001echo "--> 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
25set -e
26set -x
27# Load modules
28GO111MODULE=on go mod download
29export GOPATH=$HOME/go
30export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
31
32# Run vesmgr UT & Coverage
33go test ./... -v -coverprofile cover.out
34
35# setup version tag
36if [ -f container-tag.yaml ]
37then
38 tag=$(grep "tag:" container-tag.yaml | awk '{print $2}')
39else
40 tag="-"
41fi
42
43hash=$(git rev-parse --short HEAD || true)
44
45# Install vesmgr
46go install -ldflags "-X main.Version=$tag -X main.Hash=$hash" -v ./cmd/vesmgr