diff --git a/appveyor.yml b/appveyor.yml index 07bbbcab54c..e43750c30a6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,11 +3,8 @@ environment: 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: x86_64-pc-windows-msvc MSYS2_BITS: 64 @@ -31,9 +28,6 @@ test_script: - set RUST_BACKTRACE=1 - cargo build --features debugging - cargo test --features debugging - #- copy target\debug\cargo-clippy.exe C:\Users\appveyor\.cargo\bin\ - #- cargo clippy -- -D clippy - #- cd clippy_lints && cargo clippy -- -D clippy && cd .. notifications: - provider: Email diff --git a/util/dogfood.sh b/util/dogfood.sh deleted file mode 100755 index 358fc46c8db..00000000000 --- a/util/dogfood.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -rm -rf target*/*so -cargo build --lib && cp -R target target_recur && cargo rustc --lib -- -Zextra-plugins=clippy -Ltarget_recur/debug -Dclippy_pedantic -Dclippy || exit 1 -rm -rf target_recur -