You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2020/07/17 03:40:37 UTC

[orc] branch master updated: ORC-647: Add macOS 10.15 test to Travis CI

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/master by this push:
     new ed3e380  ORC-647: Add macOS 10.15 test to Travis CI
ed3e380 is described below

commit ed3e380d2f42d4a9b8366b818214037168a4bc42
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Thu Jul 16 20:40:26 2020 -0700

    ORC-647: Add macOS 10.15 test to Travis CI
    
    In addition to the existing macOS `10.13` and `10.14` testing, this PR aims to support `macOS 10.15` testing by using `osx_image: xcode12`.
    - https://docs.travis-ci.com/user/reference/osx/#using-macos
    
    This will add clang 12.0.0 test coverage as we see the Travis CI log in this PR.
    - https://travis-ci.org/github/apache/orc/jobs/708583066
    ```
    $ clang --version
    98Apple clang version 12.0.0 (clang-1200.0.22.8)
    99Target: x86_64-apple-darwin19.5.0
    ```
---
 .travis.yml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index cbb23e8..adf9735 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -48,6 +48,15 @@ matrix:
     - cd build
     - cmake -DOPENSSL_ROOT_DIR=`brew --prefix openssl` ..
     - make package test-out
+  - compiler: clang
+    os: osx
+    osx_image: xcode12
+    script:
+    - brew link --overwrite --force openssl
+    - mkdir build
+    - cd build
+    - cmake -DOPENSSL_ROOT_DIR=`brew --prefix openssl` ..
+    - make package test-out
 
 jdk:
   - openjdk7