From 99ee6ea8e02a5a9f9d160df99dfc07aced075f02 Mon Sep 17 00:00:00 2001 From: Frank Osterfeld Date: Fri, 19 Dec 2025 10:56:49 +0100 Subject: [PATCH] CI: Move to macos-14/macos-15-intel macos-13 support has been removed from Github actions. Latest Qt 5.15 available for macos with aqtinstall is 5.15.2, which is Intel-only, so do not attempt to build that on ARM macOS. --- .github/workflows/build.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index acb81868..55110996 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,8 @@ jobs: os: - ubuntu-22.04 - windows-2022 - - macos-13 + - macos-14 + - macos-15-intel build_type: - Debug @@ -40,6 +41,19 @@ jobs: - qt_version: "6.6.0" - qt_version: "6.10.*" # Bump to latest freely + exclude: + # 5.15.2 is intel-only, do not attempt on ARM + - os: macos-14 + config: + qt_version: "5.15" + # Do not build 6.x on Intel to avoid combinatorial explosion + - os: macos-15-intel + config: + qt_version: "6.6.0" + - os: macos-15-intel + config: + qt_version: "6.10.*" + include: - os: ubuntu-22.04 build_type: Release