mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
build: use rustup minimal profile to speed up Rust installation time
This commit is contained in:
parent
ddb5cb787d
commit
7de7d0c97b
2 changed files with 6 additions and 4 deletions
|
@ -1,6 +1,5 @@
|
|||
language: rust
|
||||
|
||||
rust: nightly
|
||||
dist: xenial
|
||||
language: minimal
|
||||
|
||||
os:
|
||||
- linux
|
||||
|
@ -19,6 +18,9 @@ env:
|
|||
- RUST_BACKTRACE=1
|
||||
- secure: "OKulfkA5OGd/d1IhvBKzRkHQwMcWjzrzbimo7+5NhkUkWxndAzl+719TB3wWvIh1i2wXXrEXsyZkXM5FtRrHm55v1VKQ5ibjEvFg1w3NIg81iDyoLq186fLqywvxGkOAFPrsePPsBj5USd5xvhwwbrjO6L7/RK6Z8shBwOSc41s="
|
||||
|
||||
before_install:
|
||||
- curl -sSL https://sh.rustup.rs | sh -s -- -y --default-toolchain=nightly --profile=minimal
|
||||
- export PATH="$HOME/.cargo/bin:$PATH"
|
||||
install:
|
||||
- |
|
||||
if [ -z ${INTEGRATION} ]; then
|
||||
|
|
|
@ -15,7 +15,7 @@ branches:
|
|||
|
||||
install:
|
||||
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
||||
- rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly
|
||||
- rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly --profile=minimal
|
||||
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
||||
- del rust-toolchain
|
||||
- cargo install rustup-toolchain-install-master --debug || echo "rustup-toolchain-install-master already installed"
|
||||
|
|
Loading…
Reference in a new issue