From ed50ccd19a2660e65db47b82933ee9177a8e8ef5 Mon Sep 17 00:00:00 2001 From: Yanqin Jin Date: Thu, 2 Jun 2022 21:38:29 -0700 Subject: [PATCH] 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 --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index fcced9f54..828741784 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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