From efce1ac3f979035f1debabd985f1491759fd5cae Mon Sep 17 00:00:00 2001 From: Joseph Crail Date: Sun, 22 May 2016 19:38:37 -0400 Subject: [PATCH] appveyor: don't double build The integration tests build the multicall executable a second time, so we disable the original build and only run the tests. --- appveyor.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 5f3e0b527..ac9aa5828 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,12 +11,11 @@ install: - rustc -V - cargo -V -build_script: - - cargo build --release --features generic --no-default-features - artifacts: - - path: target\release\uutils.exe + - path: target\debug\uutils.exe name: uutils.exe +build: false + test_script: - cargo test --no-fail-fast --features generic --no-default-features