X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=appveyor.yml;h=18f25e916f3f106b88831bccaac19c024fcc7ad6;hb=481f7880df428020480eb343c209072c6db10503;hp=c5fb71c12664b8bd991b1d9e541df770ca34fcab;hpb=f613cfcdac5057d864f4aebf1b28191635b6b070;p=rust.git diff --git a/appveyor.yml b/appveyor.yml index c5fb71c1266..18f25e916f3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,31 +2,39 @@ environment: global: PROJECT_NAME: rust-clippy matrix: - - TARGET: i686-pc-windows-gnu - MSYS2_BITS: 32 - - TARGET: i686-pc-windows-msvc - MSYS2_BITS: 32 - - 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: + # Don't build these branches + except: + # Used by bors + - trying.tmp + - staging.tmp 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=