Abukar Mohamed | bf6780b | 2020-03-19 13:08:53 +0000 | [diff] [blame] | 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_example_xapp.sh starts" |
| 23 | |
| 24 | # Install RMR from deb packages at packagecloud.io |
Mohamed Abukar | 47faec8 | 2020-04-09 22:08:19 +0300 | [diff] [blame] | 25 | rmr=rmr_3.7.2_amd64.deb |
Abukar Mohamed | bf6780b | 2020-03-19 13:08:53 +0000 | [diff] [blame] | 26 | wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/$rmr/download.deb |
| 27 | sudo dpkg -i $rmr |
| 28 | rm $rmr |
Mohamed Abukar | 47faec8 | 2020-04-09 22:08:19 +0300 | [diff] [blame] | 29 | rmrdev=rmr-dev_3.7.2_amd64.deb |
Abukar Mohamed | bf6780b | 2020-03-19 13:08:53 +0000 | [diff] [blame] | 30 | wget --content-disposition https://packagecloud.io/o-ran-sc/staging/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 | # Go install, build, etc |
| 38 | export GOPATH=$HOME/go |
| 39 | export PATH=$GOPATH/bin:$PATH |
| 40 | |
| 41 | # xApp-framework stuff |
| 42 | export CFG_FILE=config/config-file.json |
| 43 | export RMR_SEED_RT=config/uta_rtg.rt |
| 44 | |
| 45 | GO111MODULE=on GO_ENABLED=0 GOOS=linux |
| 46 | |
| 47 | |
| 48 | # Build |
Mohamed Abukar | 9f08bbc | 2020-04-06 21:15:45 +0300 | [diff] [blame] | 49 | go build -a -installsuffix cgo -o example_xapp cmd/example-xapp.go |
Abukar Mohamed | bf6780b | 2020-03-19 13:08:53 +0000 | [diff] [blame] | 50 | |
| 51 | echo "--> build_example_xapp.sh ends" |