From 826acf233c8ce6af72573c4ee9039f6e79b23ef5 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 | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 55c576767c..f9c907af3b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -86,26 +86,53 @@ stages: timeoutInMinutes: 60 strategy: matrix: - macOS: - - vmImage: 'macOS-13' - - vmImage: 'macOS-14' - Python38: + macOS13_Python38: + vmImage: 'macOS-13' python.version: '3.8' python.org.version: '3.8.9' python.installer.name: 'macosx10.9.pkg' - Python39: + macOS13_Python39: + vmImage: 'macOS-13' python.version: '3.9' python.org.version: '3.9.13' python.installer.name: 'macos11.pkg' - Python310: + macOS13_Python310: + vmImage: 'macOS-13' python.version: '3.10' python.org.version: '3.10.11' python.installer.name: 'macos11.pkg' - Python311: + macOS13_Python311: + vmImage: 'macOS-13' python.version: '3.11' python.org.version: '3.11.7' python.installer.name: 'macos11.pkg' - Python312: + 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'