From 4b6e65163cb1effed5d3eeb13158845b9a8e56ad Mon Sep 17 00:00:00 2001 From: Ben Boeckel <ben.boeckel@kitware.com> Date: Fri, 24 Mar 2023 17:56:16 -0400 Subject: [PATCH] ci: target macOS 11.0 in CI The Qt6 binaries target 11.0, so there's no point in testing 10.15 directly here. Note that 10.15 is required to allow Qt access to use `std::filesystem` from the SDKs as well. --- .gitlab/ci/configure_macos_x86_64_kits_python_qt.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab/ci/configure_macos_x86_64_kits_python_qt.cmake b/.gitlab/ci/configure_macos_x86_64_kits_python_qt.cmake index 81f580442cc..2c0bf25a14d 100644 --- a/.gitlab/ci/configure_macos_x86_64_kits_python_qt.cmake +++ b/.gitlab/ci/configure_macos_x86_64_kits_python_qt.cmake @@ -1,4 +1,4 @@ -# Ensure that we're targeting 10.13. -set(CMAKE_OSX_DEPLOYMENT_TARGET "10.13" CACHE STRING "") +# Ensure that we're targeting 11.0. +set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0" CACHE STRING "") include("${CMAKE_CURRENT_LIST_DIR}/configure_macos.cmake") -- GitLab