blob: fab3f08d5bc0f042c8abb0059422753526d9175e [file] [log] [blame]
Alok Bhatt57da2da2020-09-29 10:46:07 +00001#!/bin/bash
2# Installs NNG then runs a build script in the repository
3# Assumes ubuntu - uses apt-get
4
5echo "--> prescan-sdlgo-go-ubuntu.sh"
6
7set -ex
8
9sudo apt-get install -y cmake ninja-build
10
11# NNG repo is not frequently tagged so it's pinned to a commit hash.
12# This commit repairs bug https://github.com/nanomsg/nng/issues/970
13git clone https://github.com/nanomsg/nng.git
14(cd nng \
15 && git checkout e618abf8f3db2a94269a79c8901a51148d48fcc2 \
16 && mkdir build \
17 && cd build \
18 && cmake -DBUILD_SHARED_LIBS=1 -G Ninja .. \
19 && ninja \
20 && sudo ninja install)
21#!/bin/bash
22
23#==================================================================================
24# Copyright (c) 2020 AT&T Intellectual Property.
25# Copyright (c) 2020 Nokia
26#
27# Licensed under the Apache License, Version 2.0 (the "License");
28# you may not use this file except in compliance with the License.
29# You may obtain a copy of the License at
30#
31# http://www.apache.org/licenses/LICENSE-2.0
32#
33# Unless required by applicable law or agreed to in writing, software
34# distributed under the License is distributed on an "AS IS" BASIS,
35# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36# See the License for the specific language governing permissions and
37# limitations under the License.
38#==================================================================================
39# Go install, build, etc
40export GOPATH=$HOME/go
41export PATH=$GOPATH/bin:$PATH
42
43# xApp-framework stuff
44export CFG_FILE=../config/config-file.json
45export RMR_SEED_RT=../config/uta_rtg.rt
46
Anil Belur439502c2023-05-07 12:39:38 +100047# shellcheck disable=SC2034
Alok Bhatt57da2da2020-09-29 10:46:07 +000048GO111MODULE=on GO_ENABLED=0 GOOS=linux
49
50# setup version tag
51if [ -f container-tag.yaml ]
52then
53 tag=$(grep "tag:" container-tag.yaml | awk '{print $2}')
54else
Anil Belur439502c2023-05-07 12:39:38 +100055 # shellcheck disable=SC2034
Alok Bhatt57da2da2020-09-29 10:46:07 +000056 tag="no-tag-found"
57fi
58
Anil Belur439502c2023-05-07 12:39:38 +100059# shellcheck disable=SC2034
Alok Bhatt57da2da2020-09-29 10:46:07 +000060hash=$(git rev-parse --short HEAD || true)
61
62# Build
63
Timo Tietavainen9412d392022-02-08 18:44:27 +020064go build ./...
Alok Bhatt57da2da2020-09-29 10:46:07 +000065
66# Execute UT and measure coverage
67
Timo Tietavainen9412d392022-02-08 18:44:27 +020068go test ./... -v -coverprofile cover.out || true
Alok Bhatt57da2da2020-09-29 10:46:07 +000069
70echo "--> build_sdlgo_ubuntu.sh ends"
71
72echo "--> prescan-sdlgo-go-ubuntu.sh ends"