From a68324fc12038a333a81be84e5c64df954615f4f Mon Sep 17 00:00:00 2001 From: David G Yu Date: Tue, 3 Dec 2024 15:40:36 -0800 Subject: [PATCH] Updated azure pipelines for macOS - macOS 13 Ventura (updated from macOS 12 unsupported after 12/03/2024) --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 97d52d6a..593d8a04 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -30,10 +30,10 @@ jobs: - job: macOS pool: - vmImage: 'macOS-12' + vmImage: 'macOS-13' steps: - script: | - /bin/bash -c "sudo xcode-select -s /Applications/Xcode_14.2.app/Contents/Developer" + /bin/bash -c "sudo xcode-select -s /Applications/Xcode_14.3.app/Contents/Developer" python build_scripts/build_osd.py --tests --tbb --generator Xcode --build $HOME/OSDgen/build --src $HOME/OSDgen/src $HOME/OSDinst displayName: 'Building OpenSubdiv' - script: |