From 0ef1dbdf96820e1a24c86a562b90b6ea8f9f7ea2 Mon Sep 17 00:00:00 2001 From: Goran Jelic-Cizmek Date: Fri, 1 Nov 2024 12:49:18 +0100 Subject: [PATCH] Try the stupid way instead --- azure-pipelines.yml | 75 ++++++++++++++++++++++++++++++--------------- 1 file changed, 51 insertions(+), 24 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 55c576767c..b2135f56a9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -85,30 +85,57 @@ stages: - job: 'MacOSWheels' timeoutInMinutes: 60 strategy: - matrix: - macOS: - - vmImage: 'macOS-13' - - vmImage: 'macOS-14' - Python38: - python.version: '3.8' - python.org.version: '3.8.9' - python.installer.name: 'macosx10.9.pkg' - Python39: - python.version: '3.9' - python.org.version: '3.9.13' - python.installer.name: 'macos11.pkg' - Python310: - python.version: '3.10' - python.org.version: '3.10.11' - python.installer.name: 'macos11.pkg' - Python311: - python.version: '3.11' - python.org.version: '3.11.7' - python.installer.name: 'macos11.pkg' - Python312: - python.version: '3.12' - python.org.version: '3.12.0' - python.installer.name: 'macos11.pkg' + matrix: + macOS13_Python38: + vmImage: 'macOS-13' + python.version: '3.8' + python.org.version: '3.8.9' + python.installer.name: 'macosx10.9.pkg' + macOS13_Python39: + vmImage: 'macOS-13' + python.version: '3.9' + python.org.version: '3.9.13' + python.installer.name: 'macos11.pkg' + macOS13_Python310: + vmImage: 'macOS-13' + python.version: '3.10' + python.org.version: '3.10.11' + python.installer.name: 'macos11.pkg' + macOS13_Python311: + vmImage: 'macOS-13' + python.version: '3.11' + python.org.version: '3.11.7' + python.installer.name: 'macos11.pkg' + macOS13_Python312: + vmImage: 'macOS-13' + python.version: '3.12' + python.org.version: '3.12.0' + python.installer.name: 'macos11.pkg' + macOS14_Python38: + vmImage: 'macOS-14' + python.version: '3.8' + python.org.version: '3.8.9' + python.installer.name: 'macosx10.9.pkg' + macOS14_Python39: + vmImage: 'macOS-14' + python.version: '3.9' + python.org.version: '3.9.13' + python.installer.name: 'macos11.pkg' + macOS14_Python310: + vmImage: 'macOS-14' + python.version: '3.10' + python.org.version: '3.10.11' + python.installer.name: 'macos11.pkg' + macOS14_Python311: + vmImage: 'macOS-14' + python.version: '3.11' + python.org.version: '3.11.7' + python.installer.name: 'macos11.pkg' + macOS14_Python312: + vmImage: 'macOS-14' + python.version: '3.12' + python.org.version: '3.12.0' + python.installer.name: 'macos11.pkg' pool: vmImage: $(vmImage)