This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-1.8
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-1.8 by this push:
new 29725fa9e ORC-1186: Limit `family` in `aarch64` profile
29725fa9e is described below
commit 29725fa9e02dcd9e2c5fece5902a93537c3c13f1
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 0ca5ed7f1..4497f58fd 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -462,6 +462,7 @@
</properties>
<activation>
<os>
+ <family>mac</family>
<arch>aarch64</arch>
</os>
</activation>