From 0a1393236dfdab5e4cb2b7551f3e86691a2404ea 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..02a92961d 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 + $(which python3) -m pip install --break-system-packages setuptools displayName: 'Dependencies' condition: ne(variables['agentName'],'miniMAC_arm64') - script: |