mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 11:31:08 +03:00
17 lines
582 B
YAML
17 lines
582 B
YAML
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
|
|
sudo apt-get install -yqq --no-install-recommends libncursesw5-dev libclang-dev clang
|
|
displayName: Linux Install Dependencies
|
|
condition: eq( variables['Agent.OS'], 'Linux' )
|