From 7ef535043b4793f726ae1abf6156340358f13385 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Fri, 14 Jun 2024 20:43:51 -0700 Subject: [PATCH] ci: Bump macOS min ver to 14.5 --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index d73fbeb61b1..4d1738aa2ec 100755 --- a/build.sh +++ b/build.sh @@ -199,9 +199,9 @@ case "$platform" in # Adjust compilation options based on platform Darwin) echo "Compiling for MacOS for $target_arch..." if [ "$target_arch" == "arm64" ]; then - macos_min_ver=11.3 + macos_min_ver=14.5 elif [ "$target_arch" == "x86_64" ]; then - macos_min_ver=10.13 + macos_min_ver=14.5 else echo "Unsupported arch $target_arch" exit 1