]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Install zstd on CircleCI linux (#10102)
authorYanqin Jin <yanqin@fb.com>
Fri, 3 Jun 2022 04:38:29 +0000 (21:38 -0700)
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>
Fri, 3 Jun 2022 04:38:29 +0000 (21:38 -0700)
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

.circleci/config.yml

index fcced9f54b5608fc37fb44c501a3df55ea05fe69..828741784c27ee4cd7347a3373eb10a23996598e 100644 (file)
@@ -147,6 +147,13 @@ commands:
           command: |
             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:
     steps:
       - run:
@@ -225,6 +232,7 @@ jobs:
     steps:
       - pre-steps
       - install-gflags
+      - install-streaming-compress-libs
       - run: make V=1 J=32 -j32 check
       - post-steps