We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 877649d commit 10fa318Copy full SHA for 10fa318
.azure-pipelines/azure-pipelines-osx.yml
@@ -3,10 +3,10 @@ jobs:
3
strategy:
4
matrix:
5
macOS_10_14:
6
- image_name: 'macOS-10.14'
+ image_name: macOS-11
7
blas: 'mkl'
8
macOS_10_15:
9
- image_name: 'macOS-10.15'
+ image_name: macOS-12
10
11
pool:
12
vmImage: $(image_name)
@@ -17,9 +17,7 @@ jobs:
17
steps:
18
- script: |
19
echo "Removing homebrew for Azure to avoid conflicts with conda"
20
- curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall > ~/uninstall_homebrew
21
- chmod +x ~/uninstall_homebrew
22
- ~/uninstall_homebrew -f -q
+ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
23
displayName: Remove homebrew
24
25
- bash: |
0 commit comments