fixed/.appveyor.yml

44 lines
1.7 KiB
YAML
Raw Normal View History

# Copyright © 20182019 Trevor Spiteri
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
skip_tags: true
environment:
matrix:
2019-02-02 15:30:30 -08:00
- TARGET: x86_64-pc-windows-msvc
- TARGET: x86_64-pc-windows-gnu
2019-02-02 15:30:30 -08:00
- TARGET: i686-pc-windows-msvc
- TARGET: i686-pc-windows-gnu
cache:
- '%USERPROFILE%\.cargo\registry\cache -> Cargo.toml'
install:
2019-02-02 15:30:30 -08:00
- set PATH=%USERPROFILE%\.cargo\bin;%PATH%
- curl -sSf -o rustup-init.exe https://win.rustup.rs
- rustup-init.exe -y --default-host %TARGET% --default-toolchain none --no-modify-path
- rustup --version
- rustup install beta-%TARGET% 1.34.2-%TARGET%
- rustup component add --toolchain beta-%TARGET% rustfmt clippy
build: false
before_test:
2019-02-02 15:30:30 -08:00
- C:\msys64\usr\bin\bash -c "if [ -d ""$USERPROFILE/.cargo/registry/cache"" ]; then cd ""$USERPROFILE/.cargo/registry""; /c/msys64/usr/bin/find cache -name \*.crate; fi"
test_script:
2019-01-29 09:34:18 -08:00
- cargo +beta-%TARGET% clippy --all-targets --features "fail-on-warnings f16 serde"
- cargo +beta-%TARGET% check --all-targets --features "fail-on-warnings serde"
- cargo +beta-%TARGET% check --all-targets --features "fail-on-warnings f16"
2019-01-26 04:49:19 -08:00
- cargo +beta-%TARGET% check --all-targets --features fail-on-warnings
2019-01-26 15:39:24 -08:00
- cargo +beta-%TARGET% test --release --features "fail-on-warnings f16 serde"
- cargo +beta-%TARGET% fmt -- --check
- cargo +1.34.2-%TARGET% test --lib --features "fail-on-warnings f16 serde"
after_test:
2019-02-02 15:30:30 -08:00
- C:\msys64\usr\bin\bash -c "if [ -d ""$USERPROFILE/.cargo/registry/cache"" ]; then cd ""$USERPROFILE/.cargo/registry""; /c/msys64/usr/bin/find cache -name \*.crate; fi"