mirror of
https://github.com/chatmail/core.git
synced 2026-04-26 01:46:34 +03:00
Windows can not have `:` in filenames which the RFC3339 datetime format uses, so simply pass it through sanitize-filename as we already depend on this. We also need to adjust the tests for path separators.
22 lines
450 B
YAML
22 lines
450 B
YAML
environment:
|
|
RUST_BACKTRACE: full
|
|
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
|