From 3d1af4ae6fb91accc9c627b8b67e2a0d28651099 Mon Sep 17 00:00:00 2001 From: Igor Canadi Date: Fri, 24 Apr 2015 18:43:07 -0700 Subject: [PATCH] Don't preinstall jemalloc in Travis Summary: Since we enabled jemalloc for open source builds, Travis looks like it's dying. Don't install jemalloc when running in travis Test Plan: none Reviewers: yhchiang Subscribers: dhruba Differential Revision: https://reviews.facebook.net/D37659 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b0246914e..131436b8b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ before_install: # which needs the following ugly dependency incantations to build RocksDB: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -qq - - sudo apt-get install -y -qq gcc-4.9 g++-4.9 zlib1g-dev libbz2-dev libsnappy-dev libjemalloc-dev + - sudo apt-get install -y -qq gcc-4.9 g++-4.9 zlib1g-dev libbz2-dev libsnappy-dev - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 50 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 50 - wget https://gflags.googlecode.com/files/libgflags0_2.0-1_amd64.deb