Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 1f2ba60

Browse files
committed
Making RocksDB installation Global
1 parent 61a9a37 commit 1f2ba60

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.circleci/install_rocksdb.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,10 @@ if [ ! -f "/usr/lib/librocksdb.so.5" ]; then
2020
fi
2121
if [ ! -f "/usr/lib/librocksdb.so" ]; then
2222
ln -fs /home/circleci/rocksdb/librocksdb.so.5.8.8 /usr/lib/librocksdb.so
23-
fi
23+
fi
24+
25+
# globally install headers
26+
if [ ! -d "/usr/include/rocksdb" ]; then
27+
sudo mkdir -p /usr/include/rocksdb/
28+
ln -fs /home/circleci/rocksdb /usr/include/rocksdb
29+
fi

0 commit comments

Comments
 (0)