ci: add missing ldconfig to update shared libs

Change-Id: Icdd82c651449d9fe39045313b8165f846dce1238
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d4c3eab..710f68b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,19 +21,19 @@
     - start_section install_rocksdb_shared "Building and installing rocksdb-shared"
     - make -j $PROCS shared_lib DISABLE_WARNING_AS_ERROR=1 WARNING_FLAGS=-w
     - make install-shared DISABLE_WARNING_AS_ERROR=1 WARNING_FLAGS=-w
+    - ldconfig
     - cd ..
     - end_section rocksdb_shared
 
 
   script:
     - start_section install_collocatordb "Building and installing collocatordb"
-    - git clone "https://korap.ids-mannheim.de/gerrit/private/collocatordb"
-    - cd collocatordb
     - mkdir -p build
     - cd build
     - cmake ..
     - make
     - make install
+    - ldconfig
     - ctest --extra-verbose
     - end_section install_collocatordb