You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by om...@apache.org on 2018/02/06 21:09:33 UTC

[3/4] orc git commit: ORC-281. Take only the travis-ci changes to use the clang 4.0 compiler.

ORC-281. Take only the travis-ci changes to use the clang 4.0 compiler.


Project: http://git-wip-us.apache.org/repos/asf/orc/repo
Commit: http://git-wip-us.apache.org/repos/asf/orc/commit/7cb5001b
Tree: http://git-wip-us.apache.org/repos/asf/orc/tree/7cb5001b
Diff: http://git-wip-us.apache.org/repos/asf/orc/diff/7cb5001b

Branch: refs/heads/branch-1.4
Commit: 7cb5001b314bdc02d4e9247b6d5a2c1a5dc65933
Parents: b5a30bb
Author: Owen O'Malley <om...@apache.org>
Authored: Tue Feb 6 12:52:10 2018 -0800
Committer: Owen O'Malley <om...@apache.org>
Committed: Tue Feb 6 12:52:10 2018 -0800

----------------------------------------------------------------------
 .travis.yml | 22 +++++++++++++++++++---
 1 file changed, 19 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/orc/blob/7cb5001b/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 36570b7..77d48a7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,17 +9,33 @@ matrix:
     os: linux
   - compiler: clang
     os: linux
+    addons:
+      apt:
+         sources:
+           - llvm-toolchain-trusty-4.0
+         packages:
+           - clang-4.0
+    before_script:
+      - export CC=clang-4.0
+      - export CXX=clang++-4.0
   - compiler: clang
     os: osx
     osx_image: xcode6.4
+  - compiler: clang
+    os: osx
+    osx_image: xcode9.2
+    script:
+    - mkdir build
+    - cd build
+    - cmake -DOPENSSL_ROOT_DIR=`brew --prefix openssl` ..
+    - make package test-out
 
 jdk:
   - openjdk7
-before_script:
 env:
   - MAVEN_OPTS=-Xmx2g MAVEN_SKIP_RC=true
 script:
   - mkdir build
   - cd build
-  - cmake ..
-  - make package test-out
+  - cmake -DANALYZE_JAVA=ON ..
+  - make package test-out
\ No newline at end of file