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 E4E3D200CF7 for ; Tue, 5 Sep 2017 03:15:58 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E352F1633C4; Tue, 5 Sep 2017 01:15:58 +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 356841633BF for ; Tue, 5 Sep 2017 03:15:58 +0200 (CEST) Received: (qmail 25987 invoked by uid 500); 5 Sep 2017 01:15:57 -0000 Mailing-List: contact commits-help@arrow.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@arrow.apache.org Delivered-To: mailing list commits@arrow.apache.org Received: (qmail 25978 invoked by uid 99); 5 Sep 2017 01:15:57 -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; Tue, 05 Sep 2017 01:15:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 12D67F32D2; Tue, 5 Sep 2017 01:15:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wesm@apache.org To: commits@arrow.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: arrow git commit: ARROW-1461: [C++] Disable builds using LLVM apt repo until installation issues resolved Date: Tue, 5 Sep 2017 01:15:57 +0000 (UTC) archived-at: Tue, 05 Sep 2017 01:15:59 -0000 Repository: arrow Updated Branches: refs/heads/master ec32013fd -> 338a187a9 ARROW-1461: [C++] Disable builds using LLVM apt repo until installation issues resolved It looks like llvm.org made some changes to their apt repository in the last 48 hours and this has been causing our builds to fail. We can re-enable builds using .deb packages from apt.llvm.org at a later time Author: Wes McKinney Closes #1038 from wesm/fix-trusty-toolchain and squashes the following commits: 36ee952b [Wes McKinney] Disable clang until LLVM apt stabilizes ff26ce6e [Wes McKinney] Update LLVM apt repo URL Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/338a187a Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/338a187a Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/338a187a Branch: refs/heads/master Commit: 338a187a96fc58b72a5b8c295f621149fcd76361 Parents: ec32013 Author: Wes McKinney Authored: Mon Sep 4 21:15:52 2017 -0400 Committer: Wes McKinney Committed: Mon Sep 4 21:15:52 2017 -0400 ---------------------------------------------------------------------- .travis.yml | 6 +++--- ci/travis_install_clang_tools.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/338a187a/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 016d111..d0ac073 100644 --- a/.travis.yml +++ b/.travis.yml @@ -95,9 +95,9 @@ matrix: env: ARROW_TEST_GROUP=integration jdk: openjdk7 before_script: - - source $TRAVIS_BUILD_DIR/ci/travis_install_clang_tools.sh - - export CC="clang-4.0" - - export CXX="clang++-4.0" + # - source $TRAVIS_BUILD_DIR/ci/travis_install_clang_tools.sh + # - export CC="clang-4.0" + # - export CXX="clang++-4.0" - $TRAVIS_BUILD_DIR/ci/travis_before_script_cpp.sh script: - $TRAVIS_BUILD_DIR/ci/travis_script_integration.sh http://git-wip-us.apache.org/repos/asf/arrow/blob/338a187a/ci/travis_install_clang_tools.sh ---------------------------------------------------------------------- diff --git a/ci/travis_install_clang_tools.sh b/ci/travis_install_clang_tools.sh index bad1e73..6933296 100644 --- a/ci/travis_install_clang_tools.sh +++ b/ci/travis_install_clang_tools.sh @@ -19,6 +19,6 @@ wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add - sudo apt-add-repository -y \ - "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-4.0 main" + "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-4.0 main" sudo apt-get update sudo apt-get install clang-4.0 clang-format-4.0 clang-tidy-4.0