Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
T
titan
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangzongwu
titan
Commits
a38eb0b3
Commit
a38eb0b3
authored
Jul 22, 2019
by
Wu Jiayu
Committed by
Connor
Jul 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix mac travis: check if libs existed before install (#47)
parent
817f576f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
.travis.yml
.travis.yml
+8
-1
No files found.
.travis.yml
View file @
a38eb0b3
...
...
@@ -48,7 +48,14 @@ matrix:
install
:
# osx dependencies
-
if [ "${TRAVIS_OS_NAME}" == osx ]; then
brew install gflags zstd lz4 snappy xz;
to_install=( "gflags" "zstd" "lz4" "snappy" "xz" );
brew list > tmp;
for ins in ${to_install[*]}; do
grep -q "$ins" tmp;
if [ $? -ne 0 ]; then
brew install "$ins";
fi
done
fi
-
git clone --depth=1 --branch=tikv-3.0 https://github.com/pingcap/rocksdb.git
-
export CTEST_OUTPUT_ON_FAILURE=1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment