only do stable components for rustup

This commit is contained in:
Cyryl Płotnicki 2019-01-20 13:32:33 +00:00
parent 8b15d5cd43
commit f230d02b26

View file

@ -107,15 +107,12 @@ if [[ -z $NORUST ]]; then
rustup install nightly
rustup default stable
rustup component add rls-preview --toolchain stable
rustup component add clippy-preview --toolchain stable
rustup component add rustfmt-preview --toolchain stable
rustup component add rls --toolchain stable
rustup component add clippy --toolchain stable
rustup component add rustfmt --toolchain stable
rustup component add rust-analysis --toolchain stable
rustup component add rust-src --toolchain stable
rustup component add rls-preview --toolchain nightly
rustup component add clippy-preview --toolchain nightly
rustup component add rustfmt-preview --toolchain nightly
rustup component add rust-analysis --toolchain nightly
rustup component add rust-src --toolchain nightly