Skip to content

Commit

Permalink
Don't test all web-sys features on Windows
Browse files Browse the repository at this point in the history
Unfortunately this blows the command line limit and will fail CI
  • Loading branch information
alexcrichton committed Sep 6, 2018
1 parent e67397e commit 6e31950
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6e31950

Please sign in to comment.