mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
brew uninstall llvm in macos vm for azure pipelines (#3232)
* mess around with llvm versions * clang --version
This commit is contained in:
parent
4c081b8f73
commit
65e4f7efe0
1 changed files with 7 additions and 1 deletions
|
@ -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' )
|
||||
|
|
Loading…
Reference in a new issue