Update dep script; no version/code changes 30/2430/1
authorTommy Carpenter <tc677g@att.com>
Thu, 6 Feb 2020 15:53:22 +0000 (10:53 -0500)
committerTommy Carpenter <tc677g@att.com>
Thu, 6 Feb 2020 15:55:50 +0000 (10:55 -0500)
(a1 does not even currently use this script, yet. this is mostly
 documentation right now)

Change-Id: Ibe4daef77398bd0ebd3dbf3a44849026df931f05
Signed-off-by: Tommy Carpenter <tc677g@att.com>
integration_tests/install_deps.sh [deleted file]
integration_tests/install_rmr.sh [new file with mode: 0755]

diff --git a/integration_tests/install_deps.sh b/integration_tests/install_deps.sh
deleted file mode 100755 (executable)
index 4a17c5d..0000000
+++ /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 (executable)
index 0000000..70ee489
--- /dev/null
@@ -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 "<<<installing rmr devel headers>>>" \
+    && cmake .. -DDEV_PKG=1; make install \
+    && echo "<<< installing rmr .so>>>" \
+    && cmake .. -DPACK_EXTERNALS=1; sudo make install \
+    && echo "cleanup" \
+    && cd ../.. \
+    && rm -rf rmr