Skip to content

Commit

Permalink
missing rocksdb deps
Browse files Browse the repository at this point in the history
Signed-off-by: pSchlarb <[email protected]>
  • Loading branch information
pSchlarb committed Mar 2, 2023
1 parent b9f699f commit 029a7ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build/Dockerfile.ubuntu-2004
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ RUN apt-get update -y && apt-get install -y \
# Python
python3-pip \
rubygems &&\
gem install fpm
gem install --no-document fpm -v 1.14.2

4 changes: 2 additions & 2 deletions .github/workflows/reuseable_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: |
ls -lisha
aptStr=$(dpkg-deb -I indy-plenum_*.deb | grep -P "Depends: " | sed 's~Depends:~~g;s~(~~g;s~)~~g;s~>~~g;s~<~~g' | tr -d " \t\n\r" | tr "," "\n")
apt install ./indy-plenum_*.deb $aptStr libindy
apt install -y ./indy-plenum_*.deb $aptStr libindy
ln -s /usr/lib/ursa/libursa.so /usr/lib/libursa.so
- name: Install dependencies
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
run: |
ls -lisha
aptStr=$(dpkg-deb -I indy-plenum_*.deb | grep -P "Depends: " | sed 's~Depends:~~g;s~(~~g;s~)~~g;s~>~~g;s~<~~g' | tr -d " \t\n\r" | tr "," "\n")
apt install ./indy-plenum_*.deb $aptStr libindy
apt install -y ./indy-plenum_*.deb $aptStr libindy
ln -s /usr/lib/ursa/libursa.so /usr/lib/libursa.so
- name: Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion build-scripts/ubuntu-2004/build-3rd-parties.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ OUTPUT_PATH=${1:-.}
function build_rocksdb_deb {
VERSION=$1
VERSION_TAG="rocksdb-$VERSION"

#Install rocksdb requirements (libsnappy lbz2 llz4)
apt update && apt install -y libsnappy-dev libbz2-dev liblz4-dev zlib1g-dev libgflags-dev
git clone https://github.com/evernym/rocksdb.git /tmp/rocksdb
scriptpath="$(dirname "$(realpath "$0")")"/make_rocksdb.sh
cd /tmp/rocksdb
Expand Down

0 comments on commit 029a7ee

Please sign in to comment.