From 7b5f7ff0b499a46065e94ba077297620752a0fa0 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Fri, 15 Jun 2018 16:42:35 -0700 Subject: [PATCH] travis: osx install zstd lz4 snappy xz (#3893) Summary: test osx against the brew libraries zstd, lz4, snappy, xz. Closes https://github.com/facebook/rocksdb/pull/3893 Differential Revision: D8461988 Pulled By: siying fbshipit-source-id: cc2a8487bcb1e98ca05bddd3a509a6896258ccf8 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b16c3bfa8..3bd6a20cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,7 +52,7 @@ matrix: # https://docs.travis-ci.com/user/caching/#ccache-cache install: - if [ "${TRAVIS_OS_NAME}" == osx ]; then - brew install ccache; + brew install ccache zstd lz4 snappy xz; PATH=$PATH:/usr/local/opt/ccache/libexec; fi - if [[ "${JOB_NAME}" == cmake* ]] && [ "${TRAVIS_OS_NAME}" == linux ]; then -- GitLab