From efa9a572d70ddb8e51a5a7d8523f2b61066c737a Mon Sep 17 00:00:00 2001 From: Michael Sharp Date: Tue, 24 Jan 2023 14:20:54 -0700 Subject: [PATCH] testing mac python fix --- build/vsts-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/vsts-ci.yml b/build/vsts-ci.yml index 15502526f7..62ab0d7c01 100644 --- a/build/vsts-ci.yml +++ b/build/vsts-ci.yml @@ -100,7 +100,7 @@ stages: pool: vmImage: macOS-12 steps: - - script: brew update && brew unlink python@3.8 && rm '/usr/local/bin/2to3-3.11' && brew unlink libomp && brew install $(Build.SourcesDirectory)/build/libomp.rb --build-from-source --formula + - script: brew update && rm '/usr/local/bin/2to3-3.11' && brew unlink libomp && brew install $(Build.SourcesDirectory)/build/libomp.rb --build-from-source --formula displayName: Install build dependencies # Only build native assets to avoid conflicts. - script: ./build.sh -projects $(Build.SourcesDirectory)/src/Native/Native.proj -configuration $(BuildConfig) /p:TargetArchitecture=x64 /p:CopyPackageAssets=true @@ -126,7 +126,7 @@ stages: rm -rf /usr/local/bin/2to3 displayName: MacOS Homebrew bug Workaround continueOnError: true - - script: brew update && brew unlink python@3.8 && brew install libomp && brew link libomp --force + - script: brew update && brew install libomp && brew link libomp --force displayName: Install build dependencies # Only build native assets to avoid conflicts. - script: ./build.sh -projects $(Build.SourcesDirectory)/src/Native/Native.proj -configuration $(BuildConfig) /p:TargetArchitecture=arm64 /p:CopyPackageAssets=true