From 0ae921461ce35e3e9ac1d2885d0b5eceb5b6d004 Mon Sep 17 00:00:00 2001 From: Quentin Le Sceller Date: Tue, 4 Feb 2020 15:41:28 -0500 Subject: [PATCH] CI: Remove Rust installation for macOS (#324) --- .ci/install.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.ci/install.yml b/.ci/install.yml index b3607ea5..c97ea587 100644 --- a/.ci/install.yml +++ b/.ci/install.yml @@ -3,8 +3,3 @@ steps: 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' )