X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=appveyor.yml;h=2d8704a703bcd6655e7fb2c30215d1306dfec939;hb=4d984dc6e65575fb79f835c10467b50854549d2e;hp=74b659b0b0fa7a8f0f91a99c7f0520d4925f6c6d;hpb=3fa1cd94117faac8162c3cf091c48e014787be1d;p=rust.git diff --git a/appveyor.yml b/appveyor.yml index 74b659b0b0f..2d8704a703b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,22 +2,29 @@ environment: global: PROJECT_NAME: rust-clippy matrix: - - TARGET: i686-pc-windows-gnu - MSYS2_BITS: 32 - RUN_CARGO_CLIPPY: true - - TARGET: i686-pc-windows-msvc - MSYS2_BITS: 32 - RUN_CARGO_CLIPPY: true - - TARGET: x86_64-pc-windows-gnu - MSYS2_BITS: 64 + #- TARGET: i686-pc-windows-gnu + #- TARGET: i686-pc-windows-msvc + #- TARGET: x86_64-pc-windows-gnu - TARGET: x86_64-pc-windows-msvc - MSYS2_BITS: 64 + +branches: + # Only build AppVeyor on r+, try and the master branch + only: + - auto + - try + - master install: - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly - - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;C:\Users\appveyor\.rustup\toolchains\nightly-%TARGET%\bin - - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin + - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin + - git ls-remote https://github.com/rust-lang/rust.git master | awk '{print $1}' >rustc-hash.txt + - set /p RUSTC_HASH=