3 #==================================================================================
4 # Copyright (c) 2020 AT&T Intellectual Property.
5 # Copyright (c) 2020 Nokia
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
11 # http://www.apache.org/licenses/LICENSE-2.0
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 #==================================================================================
22 echo "--> build_ubuntu.sh starts"
24 # Install RMR from deb packages at packagecloud.io
25 rmr=rmr_4.1.2_amd64.deb
26 wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/$rmr/download.deb
29 rmrdev=rmr-dev_4.1.2_amd64.deb
30 wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/$rmrdev/download.deb
34 # Required to find nng and rmr libs
35 export LD_LIBRARY_PATH=/usr/local/lib
37 # Go install, build, etc
38 export GOPATH=$HOME/go
39 export PATH=$GOPATH/bin:$PATH
41 # xApp-framework stuff
42 export CFG_FILE=../config/config-file.json
43 export RMR_SEED_RT=../config/uta_rtg.rt
46 export DEF_FILE=../definitions/alarm-definition.json
47 export PERF_DEF_FILE=../testresources/perf-alarm-definition.json
48 export PERF_OBJ_FILE=../testresources/perf-alarm-object.json
50 GO111MODULE=on GO_ENABLED=0 GOOS=linux
53 if [ -f container-tag.yaml ]
55 tag=$(grep "tag:" container-tag.yaml | awk '{print $2}')
60 hash=$(git rev-parse --short HEAD || true)
66 cd ${ROOT_DIR}/cli && go build -a -installsuffix cgo alarm-cli.go
69 cd ${ROOT_DIR}/manager && go build -a -installsuffix cgo -ldflags "-X main.Version=$tag -X main.Hash=$hash" -o alarm-manager ./cmd/*.go
71 # Execute UT and measure coverage for the Alarm Library
72 cd ${ROOT_DIR}/alarm && go test . -v -coverprofile cover.out
74 # And for the Alarm Manager
75 cd ${ROOT_DIR}/manager && go test -v -p 1 -coverprofile cover.out ./cmd/ -c -o ./manager_test && ./manager_test
77 echo "--> build_ubuntu.sh ends"