From: Tommy Carpenter Date: Thu, 6 Feb 2020 15:53:22 +0000 (-0500) Subject: Update dep script; no version/code changes X-Git-Tag: 2.1.4~3 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=445221bb8e531d77aad987b936b30d385521134f;p=ric-plt%2Fa1.git Update dep script; no version/code changes (a1 does not even currently use this script, yet. this is mostly documentation right now) Change-Id: Ibe4daef77398bd0ebd3dbf3a44849026df931f05 Signed-off-by: Tommy Carpenter --- diff --git a/integration_tests/install_deps.sh b/integration_tests/install_deps.sh deleted file mode 100755 index 4a17c5d..0000000 --- a/integration_tests/install_deps.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -git clone --branch 1.10.2 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \ - && cd rmr \ - && mkdir .build; cd .build; cmake .. -DPACK_EXTERNALS=1; sudo make install \ - && cd ../.. \ - && rm -rf rmr diff --git a/integration_tests/install_rmr.sh b/integration_tests/install_rmr.sh new file mode 100755 index 0000000..70ee489 --- /dev/null +++ b/integration_tests/install_rmr.sh @@ -0,0 +1,11 @@ +#!/bin/sh +git clone --branch 1.13.1 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \ + && cd rmr \ + && mkdir .build; cd .build \ + && echo "<<>>" \ + && cmake .. -DDEV_PKG=1; make install \ + && echo "<<< installing rmr .so>>>" \ + && cmake .. -DPACK_EXTERNALS=1; sudo make install \ + && echo "cleanup" \ + && cd ../.. \ + && rm -rf rmr