From 9f7a7fa389ed84911be5212f8480002ca0a88a7a Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 28 Nov 2018 15:47:15 -0800 Subject: [PATCH] Disable wabt and disassembler features on appveyor for now. --- appveyor.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 9fdcaa8f16..59aade2e57 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,8 +19,10 @@ install: - cargo -V build: false test_script: - - cargo build --verbose --all - - cargo test --verbose --all + # Add --no-default-features because wabt and disass don't currently build + # on appveyor. + - cargo build --verbose --all --no-default-features + - cargo test --verbose --all --no-default-features branches: only: - master