[go: up one dir, main page]

derivative 0.3.1

A set of alternative `derive` attributes for Rust
Documentation
environment:
  global:
    PROJECT_NAME: rust-derivative
  matrix:
    - TARGET: i686-pc-windows-gnu
      MSYS2_BITS: 32
    - TARGET: i686-pc-windows-msvc
      MSYS2_BITS: 32
    - TARGET: x86_64-pc-windows-gnu
      MSYS2_BITS: 64
    - TARGET: x86_64-pc-windows-msvc
      MSYS2_BITS: 64

configuration:
  - nightly
  - beta

install:
  - curl -sSf -o rustup-init.exe https://win.rustup.rs/
  - rustup-init.exe -y --default-host %TARGET% --default-toolchain %CONFIGURATION%
  - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;C:\Users\appveyor\.rustup\toolchains\%CONFIGURATION%-%TARGET%\bin
  - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
  - rustc -V
  - cargo -V

build: false

test_script:
  - if %CONFIGURATION% == "nightly" set FEATURES="--features=nightly" else set FEATURES=
  - cargo build --verbose %FEATURES%
  - cargo test --verbose %FEATURES%