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

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


The following commit(s) were added to refs/heads/main by this push:
     new ee9180b  ORC-1016: Use `[email protected]` in GitHub Action MacOS CIs
ee9180b is described below

commit ee9180b6ff2e951f857a04da289cc2e3fac1270b
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Mon Oct 4 22:11:07 2021 -0700

    ORC-1016: Use `[email protected]` in GitHub Action MacOS CIs
    
    ### What changes were proposed in this pull request?
    
    This PR aims to recover GitHub Action by using `[email protected]` because GitHub 
Action `macOS` image does not ship `openssl` recently.
    
    ### Why are the changes needed?
    
    GitHub changed its `openssl` install version.
    - [[MacOS] Do not install latest 
OpenSSL](https://github.com/actions/virtual-environments/pull/4154)
    - [Updating readme file for macOS-10.15 version 
20210927.1](https://github.com/actions/virtual-environments/commit/3198af0e94db478c4529106e3835ce27b43153e4#diff-7a1606bd717fc0cf55f9419157117d9ca306f91bd2fdfc294720687d7be1b2c7R85)
    
    ### How was this patch tested?
    
    Pass the GitHub Action.
---
 .github/workflows/build_and_test.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build_and_test.yml 
b/.github/workflows/build_and_test.yml
index ee5fd5a..68a25b4 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -48,7 +48,7 @@ jobs:
         if [ "${{ matrix.os }}" = "ubuntu-20.04" ]; then
           cmake -DANALYZE_JAVA=ON ..
         else
-          cmake -DANALYZE_JAVA=ON -DOPENSSL_ROOT_DIR=`brew --prefix openssl` ..
+          cmake -DANALYZE_JAVA=ON -DOPENSSL_ROOT_DIR=`brew --prefix 
[email protected]` ..
         fi
         make package test-out
 

Reply via email to