X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=adapter%2Fbuild_adapter_ubuntu.sh;fp=adapter%2Fbuild_adapter_ubuntu.sh;h=0000000000000000000000000000000000000000;hb=121e8b6026904eb245c6f8ac805efa7c3dad3ae5;hp=3bb47039a4d81c919d465287e4fedfac1ee0abe2;hpb=0c38973604b5c63a91121d3641dd6f306b580acb;p=ric-plt%2Falarm-go.git diff --git a/adapter/build_adapter_ubuntu.sh b/adapter/build_adapter_ubuntu.sh deleted file mode 100755 index 3bb4703..0000000 --- a/adapter/build_adapter_ubuntu.sh +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/bash - -#================================================================================== -# Copyright (c) 2020 AT&T Intellectual Property. -# Copyright (c) 2020 Nokia -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#================================================================================== - -set -eux - -echo "--> build_adapter_ubuntu.sh starts" - -# Install RMR from deb packages at packagecloud.io -rmr=rmr_4.0.2_amd64.deb -wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/$rmr/download.deb -sudo dpkg -i $rmr -rm $rmr -rmrdev=rmr-dev_4.0.2_amd64.deb -wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/$rmrdev/download.deb -sudo dpkg -i $rmrdev -rm $rmrdev - -# Required to find nng and rmr libs -export LD_LIBRARY_PATH=/usr/local/lib - -# Go install, build, etc -export GOPATH=$HOME/go -export PATH=$GOPATH/bin:$PATH - -# xApp-framework stuff -export CFG_FILE=../config/config-file.json -export RMR_SEED_RT=../config/uta_rtg.rt - -GO111MODULE=on GO_ENABLED=0 GOOS=linux - -# setup version tag -if [ -f container-tag.yaml ] -then - tag=$(grep "tag:" container-tag.yaml | awk '{print $2}') -else - tag="no-tag-found" -fi - -hash=$(git rev-parse --short HEAD || true) - -# Build -go build -a -installsuffix cgo -ldflags "-X main.Version=$tag -X main.Hash=$hash" -o alarm-adapter ./cmd/*.go - -# Execute UT and measure coverage for the Alarm Library -cd ../alarm && go test . -v -coverprofile cover.out - -# And for the Alarm Adapter -cd ../adapter && go test -v -p 1 -coverprofile cover.out ./cmd/ -c -o ./adapter_test && ./adapter_test - -echo "--> build_adapter_ubuntu.sh ends"