From 65e4f7efe059653c0fcd02e9bed8a92b52cf8a96 Mon Sep 17 00:00:00 2001 From: Antioch Peverell Date: Fri, 14 Feb 2020 13:52:14 +0000 Subject: [PATCH] brew uninstall llvm in macos vm for azure pipelines (#3232) * mess around with llvm versions * clang --version --- .ci/install.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.ci/install.yml b/.ci/install.yml index 468998c3d..b5e73956c 100644 --- a/.ci/install.yml +++ b/.ci/install.yml @@ -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' ) \ No newline at end of file + condition: eq( variables['Agent.OS'], 'Linux' )