-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch to Windows2019 * Delete Rust install step for Windows and Linux * Add missing indent * Missing indents * Add forgotten LLVM * Fix indents * Fix rust flags
- Loading branch information
1 parent
64e8c48
commit 5467515
Showing
2 changed files
with
4 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,10 @@ | ||
steps: | ||
- script: | | ||
curl -sSf -o rustup-init.exe https://win.rustup.rs | ||
rustup-init.exe -y | ||
echo "##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin" | ||
choco install -y llvm | ||
displayName: Windows Install Rust | ||
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' ) | ||
- script: | | ||
curl https://sh.rustup.rs -sSf | sh -s -- -y | ||
echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin" | ||
displayName: Linux Install Rust and Dependencies | ||
condition: eq( variables['Agent.OS'], 'Linux' ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters