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

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


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new a331683b0 ORC-1186: Limit `family` in `aarch64` profile
a331683b0 is described below

commit a331683b0d8300c4e5a2177c6329a96a6fda4228
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue May 24 00:20:30 2022 -0700

    ORC-1186: Limit `family` in `aarch64` profile
    
    ### What changes were proposed in this pull request?
    
    This PR aims to limit OS family to `mac` in the AS-IS `aarch64` profile
    
    ### Why are the changes needed?
    
    ORC-814 added `applesilicon` profile and ORC-816 renamed it to `aarch64`.
    However, the current Apache ORC doesn't support Linux `aarch64` yet.
    We had better be clear what is working in that profile.
    
    ### How was this patch tested?
    
    This profile should be tested on Apple Silicon manually. I tested it.
    
    Closes #1137 from dongjoon-hyun/ORC-1186.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
    (cherry picked from commit efbccca6107ec1bba7624c462b653661f2989e08)
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 java/pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/java/pom.xml b/java/pom.xml
index e516011f7..fb47a976b 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -498,6 +498,7 @@
       </properties>
       <activation>
         <os>
+          <family>mac</family>
           <arch>aarch64</arch>
         </os>
       </activation>

Reply via email to