mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-27 00:00:12 +02:00
Since the CI runs all tests for all tokio crates, it is possible that a sporadic failure in one crate can mask failures/successes of other crates' tests. Using the `--no-fail-fast` flag instructs cargo to run *all* tests before failing the build. This will allow checking to see if any relevant test cases still pass even if an unrelated test has failed.
20 lines
432 B
YAML
20 lines
432 B
YAML
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
platform: x64
|
|
- TARGET: i686-pc-windows-msvc
|
|
platform: x86
|
|
|
|
install:
|
|
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
- rustup-init.exe -y --default-host %TARGET%
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
|
|
|
- rustc -V
|
|
- cargo -V
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- cargo test --all --no-fail-fast --target %TARGET%
|