From a92b8d44b32f3d48de8ce9deb3bc59514c08492f Mon Sep 17 00:00:00 2001
From: Quentin Le Sceller <q.lesceller@gmail.com>
Date: Thu, 13 Feb 2020 12:07:02 -0500
Subject: [PATCH] CI: Fix macOS build (#332)

* CI: Fix macOS build

* Missing condition
---
 .ci/install.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.ci/install.yml b/.ci/install.yml
index c97ea587..680851aa 100644
--- a/.ci/install.yml
+++ b/.ci/install.yml
@@ -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' )