blob: 29b9d779aebdda7140591e7ce6cf92d3a07b3daf [file] [log] [blame]
Mohamed Abukarebe58c22020-03-13 14:40:47 +02001#!/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
20set -eux
21
Abukar Mohamed121e8b62020-09-18 11:41:33 +000022echo "--> build_ubuntu.sh starts"
Mohamed Abukarebe58c22020-03-13 14:40:47 +020023
24# Install RMR from deb packages at packagecloud.io
vipin541eb502020-09-22 12:04:59 +000025rmr=rmr_4.1.2_amd64.deb
Mohamed Abukar643241f2020-06-09 15:26:00 +030026wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/$rmr/download.deb
Mohamed Abukarebe58c22020-03-13 14:40:47 +020027sudo dpkg -i $rmr
28rm $rmr
vipin541eb502020-09-22 12:04:59 +000029rmrdev=rmr-dev_4.1.2_amd64.deb
Mohamed Abukar643241f2020-06-09 15:26:00 +030030wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/$rmrdev/download.deb
Mohamed Abukarebe58c22020-03-13 14:40:47 +020031sudo dpkg -i $rmrdev
32rm $rmrdev
33
34# Required to find nng and rmr libs
35export LD_LIBRARY_PATH=/usr/local/lib
36
37# Go install, build, etc
38export GOPATH=$HOME/go
39export PATH=$GOPATH/bin:$PATH
40
41# xApp-framework stuff
42export CFG_FILE=../config/config-file.json
43export RMR_SEED_RT=../config/uta_rtg.rt
44
45GO111MODULE=on GO_ENABLED=0 GOOS=linux
46
47# setup version tag
48if [ -f container-tag.yaml ]
49then
50 tag=$(grep "tag:" container-tag.yaml | awk '{print $2}')
51else
52 tag="no-tag-found"
53fi
54
55hash=$(git rev-parse --short HEAD || true)
56
Abukar Mohamed121e8b62020-09-18 11:41:33 +000057ROOT_DIR=$PWD
58
Mohamed Abukarebe58c22020-03-13 14:40:47 +020059# Build
Abukar Mohamed121e8b62020-09-18 11:41:33 +000060cd ${ROOT_DIR}/manager && go build -a -installsuffix cgo -ldflags "-X main.Version=$tag -X main.Hash=$hash" -o alarm-manager ./cmd/*.go
Mohamed Abukarebe58c22020-03-13 14:40:47 +020061
62# Execute UT and measure coverage for the Alarm Library
Abukar Mohamed121e8b62020-09-18 11:41:33 +000063cd ${ROOT_DIR}/alarm && go test . -v -coverprofile cover.out
Mohamed Abukarebe58c22020-03-13 14:40:47 +020064
Abukar Mohamed121e8b62020-09-18 11:41:33 +000065# And for the Alarm Manager
66cd ${ROOT_DIR}/manager && go test -v -p 1 -coverprofile cover.out ./cmd/ -c -o ./manager_test && ./manager_test
Mohamed Abukarebe58c22020-03-13 14:40:47 +020067
Abukar Mohamed121e8b62020-09-18 11:41:33 +000068# Finally compile the CLI
69cd ${ROOT_DIR}/cli && go build -a -installsuffix cgo alarm-cli.go
70
71echo "--> build_ubuntu.sh ends"