]> git.lizzy.rs Git - rust.git/blobdiff - appveyor.yml
Auto merge of #3985 - phansch:move_some_cast_tests, r=flip1995
[rust.git] / appveyor.yml
index 9ccc615c0c5170bfc5502b3457c24b70ae1b9b0b..c852cd8232e1ef6582780d15c5506f6d38a53320 100644 (file)
@@ -2,32 +2,38 @@ 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
-    - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
+    - git ls-remote https://github.com/rust-lang/rust.git master | awk '{print $1}' >rustc-hash.txt
+    - set /p RUSTC_HASH=<rustc-hash.txt
+    - del rust-toolchain
+    - cargo install rustup-toolchain-install-master --debug || echo "rustup-toolchain-install-master already installed"
+    - rustup-toolchain-install-master %RUSTC_HASH% -f -n master
+    - rustup default master
+    - set PATH=%PATH%;C:\Users\appveyor\.rustup\toolchains\master\bin
     - rustc -V
     - cargo -V
 
 build: false
 
 test_script:
+    - set RUST_BACKTRACE=1
     - cargo build --features debugging
     - cargo test --features debugging
-    - mkdir -p rust/cargo/bin
-    - copy target/debug/cargo-clippy rust/cargo/bin/cargo-clippy
-    - PATH=%PATH%;rust/cargo/bin cargo clippy -- -D clippy
-    - cd clippy_lints && PATH=%PATH%;../rust/cargo/bin cargo clippy -- -D clippy && cd ..
 
 notifications:
     - provider: Email