mirror of https://github.com/facebook/rocksdb.git
Install zstd on CircleCI linux (#10102)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/10102 Reviewed By: jay-zhuang Differential Revision: D36885468 Pulled By: riversand963 fbshipit-source-id: 6ed5b62dda8fe0f4be4b66d09bdec0134cf4500c
This commit is contained in:
parent
e6432dfd4c
commit
ed50ccd19a
|
@ -147,6 +147,13 @@ commands:
|
||||||
command: |
|
command: |
|
||||||
sudo apt-get update -y && sudo apt-get install -y libsnappy-dev zlib1g-dev libbz2-dev liblz4-dev libzstd-dev
|
sudo apt-get update -y && sudo apt-get install -y libsnappy-dev zlib1g-dev libbz2-dev liblz4-dev libzstd-dev
|
||||||
|
|
||||||
|
install-streaming-compress-libs:
|
||||||
|
steps:
|
||||||
|
- run:
|
||||||
|
name: Install streaming compression libs
|
||||||
|
command: |
|
||||||
|
sudo apt-get update -y && sudo apt-get install -y libzstd-dev
|
||||||
|
|
||||||
install-libprotobuf-mutator:
|
install-libprotobuf-mutator:
|
||||||
steps:
|
steps:
|
||||||
- run:
|
- run:
|
||||||
|
@ -225,6 +232,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- pre-steps
|
- pre-steps
|
||||||
- install-gflags
|
- install-gflags
|
||||||
|
- install-streaming-compress-libs
|
||||||
- run: make V=1 J=32 -j32 check
|
- run: make V=1 J=32 -j32 check
|
||||||
- post-steps
|
- post-steps
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue