This is an automated email from the ASF dual-hosted git repository.
blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-format.git
The following commit(s) were added to refs/heads/master by this push:
new a1a9b35 PARQUET-1351: Fix Travis builds by using trusty without
thrift NodeJS and PHP (#100)
a1a9b35 is described below
commit a1a9b35ca552574d67a271ed9f7f9c30cac555cf
Author: nandorKollar <[email protected]>
AuthorDate: Wed Jul 18 19:01:12 2018 +0200
PARQUET-1351: Fix Travis builds by using trusty without thrift NodeJS and
PHP (#100)
* Use trusty image for Travis CI
* Compile Thrift without NodeJS and PHP. Looks like these are not present
in the travis VM, and are not needed for Parquet.
---
.travis.yml | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 42ba8ba..e0014c6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,7 +16,6 @@
# under the License.
language: java
-dist: precise
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq protobuf-compiler
@@ -25,6 +24,6 @@ before_install:
- tar zxf thrift-0.9.3.tar.gz
- cd thrift-0.9.3
- chmod +x ./configure
- - ./configure --disable-gen-erl --disable-gen-hs --without-ruby
--without-haskell --without-erlang
+ - ./configure --disable-gen-erl --disable-gen-hs --without-ruby
--without-haskell --without-erlang --without-php --without-nodejs
- sudo make install
- cd ..