From 0a68c1bab9c5589acde00bbad0449f25475b4a8d Mon Sep 17 00:00:00 2001 From: Bianca Popu Date: Wed, 21 Feb 2024 13:54:35 +0200 Subject: [PATCH] azure_pipelines.yml: Fix macos13_x64 build Signed-off-by: Bianca Popu --- azure-pipelines.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 839e972fd..2f2a3a014 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -330,8 +330,11 @@ stages: addToPath: true - script: | set -e - brew install doxygen libusb libxml2 ncurses cdk libserialport sphinx-doc pkg-config zstd + # rm /usr/local/bin/2to3 || true + which python3 + brew install --overwrite doxygen libusb libxml2 ncurses cdk libserialport sphinx-doc pkg-config zstd pip3 install sphinx + /usr/local/Frameworks/Python.framework/Versions/3.12/bin/python3.12 -m pip install setuptools displayName: 'Dependencies' condition: ne(variables['agentName'],'miniMAC_arm64') - script: |