This is an automated email from the ASF dual-hosted git repository.
laiyingchun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new 5659541d1 Remove the supporting of EOL macOS 10.x
5659541d1 is described below
commit 5659541d15c5490d25ca207c4f63b249986fbfe6
Author: Yingchun Lai <[email protected]>
AuthorDate: Tue Jul 11 20:05:36 2023 +0800
Remove the supporting of EOL macOS 10.x
macOS 10.15 is EOL in November, 2022 [1], we can
remove the supporting clarification.
Besides, update build_mini_cluster_binaries.sh
to skip copying '/usr/lib/libc++abi.dylib'
because it can not be accessed since macOS 11 [2].
1. https://computing.cs.cmu.edu/news/2022/eol-macos-catalina
2.
https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11_0_1-release-notes#Kernel
Change-Id: Ifd0658eef8ee8b275e50d49f504c23de9615a5d7
Reviewed-on: http://gerrit.cloudera.org:8080/20185
Reviewed-by: Marton Greber <[email protected]>
Tested-by: Yingchun Lai <[email protected]>
Reviewed-by: Yifan Zhang <[email protected]>
Reviewed-by: Alexey Serbin <[email protected]>
---
RELEASING.adoc | 4 ++--
build-support/mini-cluster/relocate_binaries_for_mini_cluster.py | 2 +-
docs/developing.adoc | 2 +-
docs/installation.adoc | 3 +--
4 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/RELEASING.adoc b/RELEASING.adoc
index f52a02e7f..649b3f552 100644
--- a/RELEASING.adoc
+++ b/RELEASING.adoc
@@ -268,8 +268,8 @@ NOTE: If `uploadArchives` is executed without
`--no-parallel`, uploading a
number of artifacts fails with "peer not authenticated" errors.
. Build and deploy new binary test JARs for the RC on macOS and Linux. Build
- the Linux JAR on a CentOS 7 image, and build the macOS JAR on macOS
- High Sierra if possible (see
+ the Linux JAR on a CentOS 7 image, and build the macOS JAR on macOS Big Sur
+ if possible (see
link:https://issues.apache.org/jira/browse/KUDU-2724[KUDU-2724] to remove the
need to build on an old version of macOS).
+
diff --git a/build-support/mini-cluster/relocate_binaries_for_mini_cluster.py
b/build-support/mini-cluster/relocate_binaries_for_mini_cluster.py
index b2028955a..c184e7713 100755
--- a/build-support/mini-cluster/relocate_binaries_for_mini_cluster.py
+++ b/build-support/mini-cluster/relocate_binaries_for_mini_cluster.py
@@ -98,7 +98,7 @@ PAT_MACOS_LIB_EXCLUDE = re.compile(r"""(AppleFSCompression$|
libSystem|
libapple_nghttp2|
libarchive|
- libc\+\+\.|
+ libc\+\+|
libenergytrace|
libicucore|
libncurses|
diff --git a/docs/developing.adoc b/docs/developing.adoc
index ff5e983e8..0f0caf7bd 100644
--- a/docs/developing.adoc
+++ b/docs/developing.adoc
@@ -328,7 +328,7 @@ The binary test JAR must be run on one of the
<<installation.adoc#prerequisites_and_requirements,supported Kudu platforms>>,
which includes:
-- macOS High Sierra (10.13) or later;
+- macOS Big Sur (11) or later;
- CentOS 7+, Ubuntu 18.04+, or another recent distribution of Linux
The related Maven integration using `os-maven-plugin` requires Maven 3.1 or
later.
diff --git a/docs/installation.adoc b/docs/installation.adoc
index 7910fae03..b5fd1f3c6 100644
--- a/docs/installation.adoc
+++ b/docs/installation.adoc
@@ -60,8 +60,7 @@ Linux::
link:troubleshooting.html#slow_dns_nscd[troubleshooting slow DNS lookups]
for more information.
macOS::
- - macOS 10.13 (High Sierra), macOS 10.14 (Mojave), macOS 10.15 (Catalina),
- macOS 11 (Big Sur), macOS 12 (Monterey)
+ - macOS 11 (Big Sur), macOS 12 (Monterey), macOS 13 (Ventura)
Windows::
- Microsoft Windows is unsupported.