mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-26 22:50:56 +00:00
Use CI caching and cargo feature install-upgrade
* do not force to install rustfmt * use cargo-cache * disable bash trace * clone single branch
This commit is contained in:
parent
07c06738b7
commit
d81191e87d
3 changed files with 19 additions and 3 deletions
13
.travis.yml
13
.travis.yml
|
@ -13,6 +13,13 @@ branches:
|
||||||
- trying.tmp
|
- trying.tmp
|
||||||
- staging.tmp
|
- staging.tmp
|
||||||
|
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- $HOME/.cargo
|
||||||
|
before_cache:
|
||||||
|
- cargo install -Z install-upgrade cargo-cache --debug
|
||||||
|
- cargo cache --autoclean
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- RUST_BACKTRACE=1
|
- RUST_BACKTRACE=1
|
||||||
|
@ -23,8 +30,10 @@ before_install:
|
||||||
- export PATH="$HOME/.cargo/bin:$PATH"
|
- export PATH="$HOME/.cargo/bin:$PATH"
|
||||||
install:
|
install:
|
||||||
- |
|
- |
|
||||||
if [ -z ${INTEGRATION} ]; then
|
if [[ -z ${INTEGRATION} ]]; then
|
||||||
rustup component add rustfmt || cargo install --git https://github.com/rust-lang/rustfmt/ --force
|
if ! rustup component add rustfmt; then
|
||||||
|
cargo install -Z install-upgrade --git https://github.com/rust-lang/rustfmt --bin rustfmt
|
||||||
|
fi
|
||||||
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
||||||
. $HOME/.nvm/nvm.sh
|
. $HOME/.nvm/nvm.sh
|
||||||
nvm install stable
|
nvm install stable
|
||||||
|
|
|
@ -13,12 +13,18 @@ branches:
|
||||||
- auto
|
- auto
|
||||||
- try
|
- try
|
||||||
|
|
||||||
|
cache:
|
||||||
|
- '%USERPROFILE%\.cargo'
|
||||||
|
on_finish:
|
||||||
|
- cargo install -Z install-upgrade cargo-cache --debug
|
||||||
|
- cargo cache --autoclean
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
||||||
- rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly --profile=minimal
|
- rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly --profile=minimal
|
||||||
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
||||||
- del rust-toolchain
|
- del rust-toolchain
|
||||||
- cargo install rustup-toolchain-install-master --debug || echo "rustup-toolchain-install-master already installed"
|
- cargo install -Z install-upgrade rustup-toolchain-install-master --debug || echo "rustup-toolchain-install-master already installed"
|
||||||
- rustup-toolchain-install-master -f -n master
|
- rustup-toolchain-install-master -f -n master
|
||||||
- rustup component add rustfmt --toolchain nightly & exit 0 # Format test handles missing rustfmt
|
- rustup component add rustfmt --toolchain nightly & exit 0 # Format test handles missing rustfmt
|
||||||
- rustup default master
|
- rustup default master
|
||||||
|
|
|
@ -7,6 +7,7 @@ cd "$(dirname "$0")" || exit
|
||||||
|
|
||||||
if ! command -v rustup-toolchain-install-master > /dev/null; then
|
if ! command -v rustup-toolchain-install-master > /dev/null; then
|
||||||
cargo install \
|
cargo install \
|
||||||
|
-Z install-upgrade \
|
||||||
rustup-toolchain-install-master \
|
rustup-toolchain-install-master \
|
||||||
--bin rustup-toolchain-install-master \
|
--bin rustup-toolchain-install-master \
|
||||||
--debug
|
--debug
|
||||||
|
|
Loading…
Reference in a new issue