grin/.ci/install.yml

18 lines
582 B
YAML
Raw Normal View History

steps:
- script: |
git apply .ci/win.patch
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
2020-02-21 18:24:48 +03:00
sudo apt-get install -yqq --no-install-recommends libncursesw5-dev libclang-dev clang
displayName: Linux Install Dependencies
condition: eq( variables['Agent.OS'], 'Linux' )