mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
11 lines
No EOL
387 B
YAML
11 lines
No EOL
387 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: |
|
|
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' ) |