mirror of
https://github.com/rust-lang-nursery/rust-cookbook
synced 2024-11-22 03:23:05 +00:00
Add AppVeyor configuration
This commit is contained in:
parent
588e7cb7f3
commit
d06f68b5db
1 changed files with 17 additions and 0 deletions
17
.appveyor.yml
Normal file
17
.appveyor.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
environment:
|
||||||
|
matrix:
|
||||||
|
- TARGET: x86_64-pc-windows-msvc
|
||||||
|
|
||||||
|
install:
|
||||||
|
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
||||||
|
- rustup-init.exe -y --default-host x86_64-pc-windows-msvc
|
||||||
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
||||||
|
- rustc -vV
|
||||||
|
- cargo -vV
|
||||||
|
- cargo install mdbook --vers '0.0.22' --debug
|
||||||
|
|
||||||
|
build: false
|
||||||
|
|
||||||
|
test_script:
|
||||||
|
- cargo test
|
||||||
|
- mdbook build
|
Loading…
Reference in a new issue