CI: Remove Rust installation for macOS (#324)

This commit is contained in:
Quentin Le Sceller 2020-02-04 15:41:28 -05:00 committed by GitHub
parent 047ea9372f
commit 0ae921461c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,8 +3,3 @@ steps:
choco install -y llvm choco install -y llvm
displayName: Windows Install LLVM displayName: Windows Install LLVM
condition: eq( variables['Agent.OS'], 'Windows_NT' ) 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' )