From 3fa1cd94117faac8162c3cf091c48e014787be1d Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Tue, 21 Feb 2017 09:38:33 +0100 Subject: [PATCH] Don't run cargo clippy on 64 bit --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index d83d3478c326..74b659b0b0fa 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,8 +4,10 @@ environment: 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: x86_64-pc-windows-msvc @@ -27,7 +29,7 @@ test_script: - 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 .. + - if defined RUN_CARGO_CLIPPY cd clippy_lints && cargo clippy -- -D clippy && cd .. notifications: - provider: Email