2017-08-22 18:38:30 +00:00
|
|
|
# Based on the "trust" template v0.1.1
|
|
|
|
# https://github.com/japaric/trust/tree/v0.1.1
|
|
|
|
|
2017-08-20 18:30:51 +00:00
|
|
|
environment:
|
2017-08-22 18:38:30 +00:00
|
|
|
global:
|
|
|
|
CRATE_NAME: rust-cookbook
|
|
|
|
|
2017-08-20 18:30:51 +00:00
|
|
|
matrix:
|
2017-08-22 19:41:46 +00:00
|
|
|
# - TARGET: x86_64-pc-windows-gnu
|
|
|
|
# RUST_VERSION: stable
|
2017-08-22 18:38:30 +00:00
|
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
|
|
RUST_VERSION: stable
|
|
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
|
|
RUST_VERSION: nightly
|
2017-08-20 18:30:51 +00:00
|
|
|
|
|
|
|
install:
|
2017-08-22 18:38:30 +00:00
|
|
|
- ps: >-
|
|
|
|
If ($Env:TARGET -eq 'x86_64-pc-windows-gnu') {
|
|
|
|
$Env:PATH += ';C:\msys64\mingw64\bin'
|
|
|
|
} ElseIf ($Env:TARGET -eq 'i686-pc-windows-gnu') {
|
|
|
|
$Env:PATH += ';C:\msys64\mingw32\bin'
|
|
|
|
}
|
|
|
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
|
|
|
- rustup-init.exe -y --default-host %TARGET% --default-toolchain %RUST_VERSION%
|
2017-08-20 18:30:51 +00:00
|
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
2017-08-22 18:38:30 +00:00
|
|
|
- rustc -Vv
|
|
|
|
- cargo -V
|
2017-08-20 18:30:51 +00:00
|
|
|
|
|
|
|
test_script:
|
2017-09-11 15:06:10 +00:00
|
|
|
- cargo clean
|
2017-08-22 18:38:30 +00:00
|
|
|
- cargo build
|
2017-08-20 18:30:51 +00:00
|
|
|
- cargo test
|
2017-08-22 18:38:30 +00:00
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
# Release tags
|
|
|
|
- /^v\d+\.\d+\.\d+.*$/
|
|
|
|
- master
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
- provider: Email
|
|
|
|
on_build_success: false
|
|
|
|
|
|
|
|
# Building is done in the test phase, so we disable Appveyor's build phase.
|
|
|
|
build: false
|