grin-wallet/.ci/install.yml

11 lines
372 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' )
- 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' )