brew uninstall llvm in macos vm for azure pipelines (#3232)

* mess around with llvm versions

* clang --version
This commit is contained in:
Antioch Peverell 2020-02-14 13:52:14 +00:00 committed by GitHub
parent 4c081b8f73
commit 65e4f7efe0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,8 +4,14 @@ steps:
choco install -y llvm
displayName: Windows Install LLVM
condition: eq( variables['Agent.OS'], 'Windows_NT' )
- script: |
clang --version
brew uninstall llvm
clang --version
displayName: macOS Uninstall LLVM
condition: eq( variables['Agent.OS'], 'Darwin' )
- script: |
sudo apt-get update -yqq
sudo apt-get install -yqq --no-install-recommends libncursesw5-dev
displayName: Linux Install Dependencies
condition: eq( variables['Agent.OS'], 'Linux' )
condition: eq( variables['Agent.OS'], 'Linux' )