c8bd9e60560dd8123bcf5a4a8995dea2b63ad71e
[ric-plt/alarm-go.git] / build / build_ubuntu.sh
1 #!/bin/bash
2
3 #==================================================================================
4 #   Copyright (c) 2020 AT&T Intellectual Property.
5 #   Copyright (c) 2020 Nokia
6 #
7 #   Licensed under the Apache License, Version 2.0 (the "License");
8 #   you may not use this file except in compliance with the License.
9 #   You may obtain a copy of the License at
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #   Unless required by applicable law or agreed to in writing, software
14 #   distributed under the License is distributed on an "AS IS" BASIS,
15 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #   See the License for the specific language governing permissions and
17 #   limitations under the License.
18 #==================================================================================
19
20 #set -eux
21
22 echo "--> build_ubuntu.sh starts"
23
24 # Install RMR from deb packages at packagecloud.io
25 rmr=rmr_4.9.1_amd64.deb
26 wget --content-disposition  https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/$rmr/download.deb
27 sudo dpkg -i $rmr
28 rm $rmr
29 rmrdev=rmr-dev_4.9.1_amd64.deb
30 wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/$rmrdev/download.deb
31 sudo dpkg -i $rmrdev
32 rm $rmrdev
33
34 # Required to find nng and rmr libs
35 export LD_LIBRARY_PATH=/usr/local/lib
36
37 # Installing the go version
38 GOLANG_VERSION=1.20.4
39 wget --quiet https://dl.google.com/go/go$GOLANG_VERSION.linux-amd64.tar.gz \
40         && tar xvzf go$GOLANG_VERSION.linux-amd64.tar.gz -C /usr/local
41 PATH="/usr/local/go/bin:${PATH}"
42 GOPATH="/go"
43 rm go$GOLANG_VERSION.linux-amd64.tar.gz
44
45
46 # Go install, build, etc
47 export GOPATH=$HOME/go
48 export PATH=$GOPATH/bin:$PATH
49
50 # xApp-framework stuff
51 export CFG_FILE=../config/config-file.json
52 export RMR_SEED_RT=../config/uta_rtg.rt
53
54 # xApp stuff
55 export DEF_FILE=../../definitions/alarm-definition.json
56 export PERF_DEF_FILE=../testresources/perf-alarm-definition.json
57 export PERF_OBJ_FILE=../testresources/perf-alarm-object.json
58
59 GO111MODULE=on GO_ENABLED=0 GOOS=linux
60
61 # setup version tag
62 if [ -f build/container-tag.yaml ]
63 then
64     tag=$(grep "tag:" build/container-tag.yaml | awk '{print $2}')
65 else
66     tag="no-tag-found"
67 fi
68
69 hash=$(git rev-parse --short HEAD || true)
70
71 ROOT_DIR=$PWD
72
73 # compile the CLI
74 cd ${ROOT_DIR}/cli && go build -a -installsuffix cgo alarm-cli.go
75
76 # Build
77 cd ${ROOT_DIR}/manager && go build -a -installsuffix cgo -ldflags "-X main.Version=$tag -X main.Hash=$hash" -o alarm-manager ./cmd/*.go
78
79 # Execute UT and measure coverage for the Alarm Library
80 cd ${ROOT_DIR}/alarm && go test . -v -coverprofile cover.out
81
82 # Copy alarm/cover.out to alarm-go/cover.out
83 cd ${ROOT_DIR} && cat alarm/cover.out > coverage.out
84
85 # And for the Alarm Manager
86 #cd ${ROOT_DIR}/manager && go test -v -p 1 -coverprofile cover.out ./cmd/ -c -o ./manager_test && ./manager_test
87 cd ${ROOT_DIR}/manager && GO111MODULE=on RMR_SEED_RT=../../config/uta_rtg.rt CFG_FILE=../../config/config-file.json go test -v -p 1 -cover -coverprofile=cover.out ./...
88
89 # Remove first line of the manager/cover.out and append to alarm-go/coverity.out
90 cd ${ROOT_DIR} && sed '1d' manager/cover.out >> coverage.out
91
92 cd ${ROOT_DIR} && GO111MODULE=on go tool cover -html=coverage.out -o coverage.html
93
94 echo "--> build_ubuntu.sh ends"