2019-05-09 20:15:10 +03:00
|
|
|
steps:
|
|
|
|
- script: |
|
|
|
|
git apply .ci/win.patch
|
|
|
|
choco install -y llvm
|
2019-06-27 17:31:58 +03:00
|
|
|
displayName: Windows Install LLVM
|
2019-05-09 20:15:10 +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' )
|
|
|
|
- script: |
|
|
|
|
sudo apt-get update -yqq
|
|
|
|
sudo apt-get install -yqq --no-install-recommends libncursesw5-dev
|
2019-06-27 17:31:58 +03:00
|
|
|
displayName: Linux Install Dependencies
|
2019-05-09 20:15:10 +03:00
|
|
|
condition: eq( variables['Agent.OS'], 'Linux' )
|