File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 11language : java
2+ jdk : openjdk7
23before_install :
34 - sudo apt-get update -qq
45 - sudo apt-get install build-essential
56 - mkdir protobuf_install
67 - pushd protobuf_install
7- - wget http ://protobuf.googlecode. com/files/ protobuf-2.5.0.tar.gz
8+ - wget https ://github. com/google/protobuf/archive/v2.5.0.tar.gz -O protobuf-2.5.0.tar.gz
89 - tar xzf protobuf-2.5.0.tar.gz
9- - cd protobuf-2.5.0
10+ - cd protobuf-2.5.0
11+ - sudo apt-get install autoconf automake libtool curl make g++ unzip
12+ # Getting gtest before executing autogen.sh as it contains invalid link to googlecode.com
13+ - wget https://github.com/google/googletest/archive/release-1.5.0.tar.gz
14+ - tar xzf release-1.5.0.tar.gz
15+ - mv googletest-release-1.5.0 gtest
16+ - ./autogen.sh
1017 - ./configure
1118 - make
1219 - sudo make install
@@ -19,7 +26,7 @@ before_install:
1926 - tar zxf thrift-0.7.0.tar.gz
2027 - cd thrift-0.7.0
2128 - chmod +x ./configure
22- - ./configure --disable-gen-erl --disable-gen-hs --without-ruby --without-haskell --without-erlang
29+ - ./configure --disable-gen-erl --disable-gen-hs --without-ruby --without-haskell --without-erlang --without-php --without-nodejs
2330 - sudo make install
2431 - cd ..
2532
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Parquet-MR uses Maven to build and depends on both the thrift and protoc compile
3535To build and install the protobuf compiler, run:
3636
3737```
38- wget http ://protobuf.googlecode. com/files/ protobuf-2.5.0.tar.gz
38+ wget https ://github. com/google/protobuf/archive/v2.5.0.tar.gz -O protobuf-2.5.0.tar.gz
3939tar xzf protobuf-2.5.0.tar.gz
4040cd protobuf-2.5.0
4141./configure
You can’t perform that action at this time.
0 commit comments