From bbf79d7cd7a2a0abd6cbed029ee90fc9d119f3ef Mon Sep 17 00:00:00 2001 From: Piotr Darosz Date: Mon, 22 Jul 2019 07:38:00 +0200 Subject: Get rid of binary files in pnfsimulator repo Remove usage of binary files in pnfsimulator vcs Issue-ID: INT-1134 Signed-off-by: Piotr Darosz Change-Id: I23b8f01a099b7e80542d258b2e0bcd34742d3684 --- .../netconfsimulator/netconf/initialize_netopeer.sh | 7 ++++++- .../netopeer-change-saver-native/CMakeLists.txt | 4 ++-- .../netopeer-change-saver-native/libsysrepo-cpp.so | Bin 442112 -> 0 bytes 3 files changed, 8 insertions(+), 3 deletions(-) mode change 100644 => 100755 test/mocks/pnfsimulator/netconfsimulator/netopeer-change-saver-native/CMakeLists.txt delete mode 100755 test/mocks/pnfsimulator/netconfsimulator/netopeer-change-saver-native/libsysrepo-cpp.so (limited to 'test/mocks') diff --git a/test/mocks/pnfsimulator/netconfsimulator/netconf/initialize_netopeer.sh b/test/mocks/pnfsimulator/netconfsimulator/netconf/initialize_netopeer.sh index 71c1f215b..550a64ff4 100755 --- a/test/mocks/pnfsimulator/netconfsimulator/netconf/initialize_netopeer.sh +++ b/test/mocks/pnfsimulator/netconfsimulator/netconf/initialize_netopeer.sh @@ -47,8 +47,13 @@ apt-get install -y python3 python3-pip librdkafka-dev pip3 install flask flask_restful nohup python3 /netconf/yang_loader_server.py & +cd /opt/dev/sysrepo && cmake . +cd /opt/dev/sysrepo && make -j2 + /bin/cp -R /$NETOPEER_CHANGE_SAVER /opt/dev/ -ln -s /opt/dev/sysrepo/build/src/libsysrepo.so /$NETOPEER_CHANGE_SAVER/libsysrepo.so +cp /opt/dev/sysrepo/swig/libSysrepo-cpp.so /opt/dev/$NETOPEER_CHANGE_SAVER/ +ln -s /opt/dev/sysrepo/build/src/libsysrepo.so /opt/dev/$NETOPEER_CHANGE_SAVER/libsysrepo.so + cd /opt/dev/$NETOPEER_CHANGE_SAVER && cmake . cd /opt/dev/$NETOPEER_CHANGE_SAVER && make /opt/dev/$NETOPEER_CHANGE_SAVER/bin/netopeer-change-saver pnf-simulator kafka1 config diff --git a/test/mocks/pnfsimulator/netconfsimulator/netopeer-change-saver-native/CMakeLists.txt b/test/mocks/pnfsimulator/netconfsimulator/netopeer-change-saver-native/CMakeLists.txt old mode 100644 new mode 100755 index 35a3a85ad..f21576d00 --- a/test/mocks/pnfsimulator/netconfsimulator/netopeer-change-saver-native/CMakeLists.txt +++ b/test/mocks/pnfsimulator/netconfsimulator/netopeer-change-saver-native/CMakeLists.txt @@ -11,10 +11,10 @@ find_package(Threads REQUIRED) add_executable(netopeer-change-saver main.cpp sysrepo.h Application.cpp Application.h KafkaWrapper.cpp KafkaWrapper.h SysrepoCallback.cpp SysrepoCallback.h) -file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/libsysrepo-cpp.so +file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/libSysrepo-cpp.so DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/bin) -target_link_libraries(netopeer-change-saver libsysrepo-cpp.so) +target_link_libraries(netopeer-change-saver libSysrepo-cpp.so) target_link_libraries(netopeer-change-saver libsysrepo.so) target_link_libraries(netopeer-change-saver Threads::Threads) target_link_libraries(netopeer-change-saver librdkafka.so) \ No newline at end of file diff --git a/test/mocks/pnfsimulator/netconfsimulator/netopeer-change-saver-native/libsysrepo-cpp.so b/test/mocks/pnfsimulator/netconfsimulator/netopeer-change-saver-native/libsysrepo-cpp.so deleted file mode 100755 index efdcc135d..000000000 Binary files a/test/mocks/pnfsimulator/netconfsimulator/netopeer-change-saver-native/libsysrepo-cpp.so and /dev/null differ -- cgit 1.2.3-korg