File tree Expand file tree Collapse file tree 4 files changed +15
-8
lines changed
Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,6 @@ addons:
2929 - python-pip
3030 - python2.7-dev
3131 - m4
32- - libprotobuf-dev
33- - doxygen
34- - protobuf-compiler
35- - python-protobuf
3632 - python-numpy
3733 - python-wheel
3834 - libgoogle-glog-dev
@@ -43,6 +39,8 @@ addons:
4339 - graphviz
4440 - swig
4541 - clang-format-3.8
42+ - automake
43+ - libtool
4644before_install :
4745 - |
4846 if [ ${JOB} == "BUILD_AND_TEST" ]; then
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ endif()
2424
2525if (WITH_DOC)
2626 find_package (Sphinx REQUIRED)
27- find_package (Doxygen REQUIRED)
2827 find_python_module(recommonmark REQUIRED)
2928endif ()
3029
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -e
3+ pip install protobuf
4+ cd /tmp
5+ wget https://github.com/google/protobuf/archive/v3.0.2.tar.gz -O protobuf.tar.gz
6+ tar xf protobuf.tar.gz
7+ cd protobuf*
8+ ./autogen.sh
9+ ./configure --prefix=/usr/
10+ make -j 2 install
11+ cd ..
12+ rm -rf protobuf*
13+
314pushd /usr/src/gtest
415cmake .
516make
Original file line number Diff line number Diff line change 22brew update
33brew tap homebrew/science
44brew install python
5- sudo pip install --upgrade protobuf==2.6.0
6- brew install homebrew/versions/protobuf260 --without-python
7- brew install cmake python glog gflags openblas wget md5sha1sum
5+ sudo pip install --upgrade protobuf
6+ brew install cmake python glog gflags openblas wget md5sha1sum protobuf
87
98wget https://github.com/google/googletest/archive/release-1.8.0.tar.gz -O gtest.tar.gz
109tar xf gtest.tar.gz
You can’t perform that action at this time.
0 commit comments