Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0E374200AC0 for ; Tue, 10 May 2016 00:57:36 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0CBC3160A0F; Mon, 9 May 2016 22:57:36 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 45EB71609A8 for ; Tue, 10 May 2016 00:57:35 +0200 (CEST) Received: (qmail 12005 invoked by uid 500); 9 May 2016 22:57:34 -0000 Mailing-List: contact commits-help@parquet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@parquet.apache.org Delivered-To: mailing list commits@parquet.apache.org Received: (qmail 11994 invoked by uid 99); 9 May 2016 22:57:34 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 May 2016 22:57:34 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 51892DFC6D; Mon, 9 May 2016 22:57:34 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wesm@apache.org To: commits@parquet.apache.org Message-Id: <8c6537087bea42668bf3e8e1c1851dab@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: parquet-cpp git commit: PARQUET-606: Move back to Ubuntu 14.04 builds, install LLVM manually Date: Mon, 9 May 2016 22:57:34 +0000 (UTC) archived-at: Mon, 09 May 2016 22:57:36 -0000 Repository: parquet-cpp Updated Branches: refs/heads/master 42d5f1c97 -> ffba9a56a PARQUET-606: Move back to Ubuntu 14.04 builds, install LLVM manually This fixes the coverage builds. Author: Wes McKinney Closes #101 from wesm/PARQUET-606 and squashes the following commits: 87485fb [Wes McKinney] Install clang for all linuxes 3b42694 [Wes McKinney] Install LLVM toolchain from llvm.org apt repositories with sudo on trusty Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/ffba9a56 Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/ffba9a56 Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/ffba9a56 Branch: refs/heads/master Commit: ffba9a56a909760e732be750325933cd3178de81 Parents: 42d5f1c Author: Wes McKinney Authored: Mon May 9 15:57:22 2016 -0700 Committer: Wes McKinney Committed: Mon May 9 15:57:22 2016 -0700 ---------------------------------------------------------------------- .travis.yml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/ffba9a56/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 8fe291c..1378096 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,21 +1,14 @@ sudo: required -dist: precise +dist: trusty addons: apt: sources: - ubuntu-toolchain-r-test - - kalakris-cmake - - llvm-toolchain-precise-3.7 - - boost-latest packages: - - clang-format-3.7 - - clang-tidy-3.7 - gcc-4.9 - g++-4.9 - - gcov - - cmake - valgrind - - libboost1.55-all-dev #needed for thrift cpp compilation + - libboost-all-dev #needed for thrift cpp compilation - libssl-dev #needed for thrift cpp compilation - libtool #needed for thrift cpp compilation - bison #needed for thrift cpp compilation @@ -35,9 +28,19 @@ matrix: - os: osx compiler: clang addons: + before_install: + - mkdir $TRAVIS_BUILD_DIR/parquet-build + - pushd $TRAVIS_BUILD_DIR/parquet-build language: cpp before_install: +- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add - +- sudo apt-get install -y software-properties-common +- sudo add-apt-repository -y ppa:george-edison55/cmake-3.x +- sudo apt-add-repository -y "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.7 main" +- sudo apt-add-repository -y "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.8 main" +- sudo apt-get update +- sudo apt-get install -y clang-tidy-3.7 clang-format-3.7 cmake - mkdir $TRAVIS_BUILD_DIR/parquet-build - pushd $TRAVIS_BUILD_DIR/parquet-build