Skip to content

Commit 1c8ed85

Browse files
committed
add protoc install step
1 parent 58e3ec3 commit 1c8ed85

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
language: java
22
jdk:
33
- oraclejdk8
4+
before_install:
5+
- sudo apt-get update -qq
6+
- sudo apt-get install -y wget tar make
7+
install:
8+
- wget https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.gz
9+
- tar -xzvf protobuf-2.6.1.tar.gz
10+
- cd protobuf-2.6.1 && ./configure --prefix=/usr && make && sudo make install
11+

0 commit comments

Comments
 (0)