26 lines
671 B
YAML
26 lines
671 B
YAML
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
- TARGET: i686-pc-windows-msvc
|
|
- TARGET: x86_64-pc-windows-gnu
|
|
- TARGET: i686-pc-windows-gnu
|
|
install:
|
|
# Install Rust
|
|
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
|
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
|
- rustup-init.exe -y --default-host %TARGET%
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
|
- set PATH=%PATH%;C:\Users\appveyor\.rustup\toolchains\stable-%TARGET%\bin
|
|
|
|
- rustc -V
|
|
- cargo -V
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- set CURL_SSL_BACKEND=openssl
|
|
- set CARGO_HTTP_CHECK_REVOKE=false
|
|
- cargo build --verbose
|
|
- cargo test --verbose -- --nocapture
|
|
- cargo doc
|