Skip to content

Commit

Permalink
CI: Fix macOS build (#332)
Browse files Browse the repository at this point in the history
* CI: Fix macOS build

* Missing condition
  • Loading branch information
quentinlesceller committed Feb 13, 2020
1 parent 3571ff8 commit a92b8d4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .ci/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' )

0 comments on commit a92b8d4

Please sign in to comment.