mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
21 lines
427 B
YAML
21 lines
427 B
YAML
environment:
|
|
matrix:
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
install:
|
|
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
- rustup-init -yv --default-toolchain nightly-2019-07-10
|
|
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
|
|
- rustc -vV
|
|
- cargo -vV
|
|
- cargo update
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- cargo test --release --all
|
|
|
|
cache:
|
|
- target
|
|
- C:\Users\appveyor\.cargo\registry
|