From f798b50fc542f6b83ed4b077c10ac4a0f45ae5f1 Mon Sep 17 00:00:00 2001 From: Nils Schimmelmann Date: Sun, 22 Oct 2023 09:51:03 -0500 Subject: [PATCH] bump minimum Mac version to Monterey and disable Debian arm64 build (#330) --- .appveyor.yml | 12 +++++++----- CMakeLists.txt | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 2d34504e0..e43893fff 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -30,7 +30,7 @@ environment: image: # AppVeyor builds are ordered by the image list: - Visual Studio 2019 - - macos-bigsur + - macos-monterey - Ubuntu1804 - Ubuntu2004 - Previous Ubuntu2004 @@ -63,11 +63,11 @@ matrix: COMPILER: MinGW - image: Previous Ubuntu2004 COMPILER: MSVC - - image: macos-bigsur + - image: macos-monterey COMPILER: GCC - - image: macos-bigsur + - image: macos-monterey COMPILER: MinGW - - image: macos-bigsur + - image: macos-monterey COMPILER: MSVC # Following builds are disabled to prevent build timeouts - image: Ubuntu1804 @@ -78,6 +78,8 @@ matrix: COMPILER: Clang - image: Ubuntu2004 ARCH: arm64 + - image: Previous Ubuntu2004 + ARCH: arm64 - image: Visual Studio 2022 COMPILER: MSVC # x64 .deb is either Ubuntu or Debian stable @@ -335,7 +337,7 @@ for: - matrix: only: - - image: macos-bigsur + - image: macos-monterey clone_folder: ~/mmapper diff --git a/CMakeLists.txt b/CMakeLists.txt index dbdb816a4..0f1dfba7d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,7 +46,7 @@ endif() if(APPLE) set(CMAKE_MACOSX_RPATH TRUE) - set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0" CACHE STRING "Minimum OS X deployment version" FORCE) + set(CMAKE_OSX_DEPLOYMENT_TARGET "12.0" CACHE STRING "Minimum OS X deployment version" FORCE) endif() if(WIN32)