From 6e319509e591778eac96bc8c7745fa9d99a88ce9 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 6 Sep 2018 15:07:04 -0700 Subject: [PATCH] Don't test all web-sys features on Windows Unfortunately this blows the command line limit and will fail CI --- .appveyor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index f441ec2b8f6..0f1488a04c2 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -25,8 +25,11 @@ test_script: - where chromedriver - set CHROMEDRIVER=C:\Tools\WebDriver\chromedriver.exe - cargo test -p js-sys --target wasm32-unknown-unknown - - cargo test --manifest-path crates/web-sys/Cargo.toml --target wasm32-unknown-unknown --all-features - cargo test -p webidl-tests --target wasm32-unknown-unknown + # Try just a few features for `web-sys`, unfortunately the whole crate blows + # system command line limits meaning we can't even spawn rustc to enable all + # the features. + - cargo build --manifest-path crates/web-sys/Cargo.toml --target wasm32-unknown-unknown --features 'Node Window Document' branches: only: