grin-wallet/.ci/install.yml

15 lines
491 B
YAML
Raw Normal View History

2019-05-03 18:08:14 +03:00
steps:
- script: |
2019-05-03 19:19:32 +03:00
choco install -y llvm
displayName: Windows Install LLVM
2019-05-03 18:08:14 +03:00
condition: eq( variables['Agent.OS'], 'Windows_NT' )
2020-02-25 06:31:44 +03:00
- script: |
sudo apt-get update -yqq
sudo apt-get install -yqq --no-install-recommends libclang-dev clang
displayName: Linux Install Dependencies
condition: eq( variables['Agent.OS'], 'Linux' )
- script: |
brew uninstall llvm
displayName: macOS Uninstall LLVM
condition: eq( variables['Agent.OS'], 'Darwin' )