mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-20 19:11:09 +03:00
5467515d36
* Switch to Windows2019 * Delete Rust install step for Windows and Linux * Add missing indent * Missing indents * Add forgotten LLVM * Fix indents * Fix rust flags
10 lines
372 B
YAML
10 lines
372 B
YAML
steps:
|
|
- script: |
|
|
choco install -y llvm
|
|
displayName: Windows Install LLVM
|
|
condition: eq( variables['Agent.OS'], 'Windows_NT' )
|
|
- script: |
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
|
|
displayName: macOS Install Rust
|
|
condition: eq( variables['Agent.OS'], 'Darwin' )
|