2017-08-13 10:19:17 +00:00
|
|
|
environment:
|
|
|
|
matrix:
|
|
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
|
|
- TARGET: i686-pc-windows-msvc
|
|
|
|
|
|
|
|
install:
|
|
|
|
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
|
|
- rustup-init.exe -y --default-host %TARGET%
|
|
|
|
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
|
|
|
|
- rustc --version
|
|
|
|
- cargo --version
|
|
|
|
|
|
|
|
build: false
|
|
|
|
|
|
|
|
test_script:
|
2018-08-17 02:14:17 +00:00
|
|
|
- 'cargo test'
|
2019-02-25 15:48:06 +00:00
|
|
|
- 'cargo test --features early-data'
|
2018-03-24 03:20:48 +00:00
|
|
|
- 'cd examples/server'
|
|
|
|
- 'cargo check'
|
|
|
|
- 'cd ../../examples/client'
|
|
|
|
- 'cargo check'
|