CI: Fix macOS build (#332)

* CI: Fix macOS build

* Missing condition
This commit is contained in:
Quentin Le Sceller 2020-02-13 12:07:02 -05:00 committed by GitHub
parent 3571ff8e37
commit a92b8d44b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,3 +3,7 @@ steps:
choco install -y llvm
displayName: Windows Install LLVM
condition: eq( variables['Agent.OS'], 'Windows_NT' )
- script: |
brew uninstall llvm
displayName: macOS Uninstall LLVM
condition: eq( variables['Agent.OS'], 'Darwin' )