34 lines
901 B
YAML
34 lines
901 B
YAML
environment:
|
|
matrix:
|
|
- APPVEYOR_RUST_CHANNEL: stable
|
|
- APPVEYOR_RUST_CHANNEL: nightly
|
|
|
|
install:
|
|
# Install rust, x86_64-pc-windows-msvc host
|
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
|
- rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain %APPVEYOR_RUST_CHANNEL%
|
|
- set PATH=C:\msys64\usr\bin;%PATH%;C:\Users\appveyor\.cargo\bin
|
|
- rustc -vV
|
|
- cargo -vV
|
|
|
|
build: false
|
|
|
|
for:
|
|
- matrix:
|
|
only:
|
|
- APPVEYOR_RUST_CHANNEL: stable
|
|
test_script:
|
|
- cargo build
|
|
- cargo build --features preserve_order
|
|
- cargo build --features arbitrary_precision
|
|
|
|
- matrix:
|
|
only:
|
|
- APPVEYOR_RUST_CHANNEL: nightly
|
|
test_script:
|
|
- cargo build
|
|
- cargo build --manifest-path tests/deps/Cargo.toml
|
|
- cargo test
|
|
- cargo test --features preserve_order
|
|
- cargo test --features arbitrary_precision
|