environment:
global:
RUST_VERSION: stable
matrix:
- TARGET: x86_64-pc-windows-msvc
CHANNEL: stable
install:
- ps: >-
$Env:PATH += ';C:\msys64\usr\bin'
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-host %TARGET% --default-toolchain %RUST_VERSION%
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustc -Vv
- cargo -V
test_script:
- git log --graph --oneline
- echo "APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH=%APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH%"
- echo "APPVEYOR_PULL_REQUEST_HEAD_COMMIT=%APPVEYOR_PULL_REQUEST_HEAD_COMMIT%"
- echo "APPVEYOR_REPO_COMMIT =%APPVEYOR_REPO_COMMIT %"
- IF not "%APPVEYOR_PULL_REQUEST_HEAD_COMMIT%"=="" (cargo run -- HEAD~..HEAD^^2 --no-merge-commit -vvvv)
branches:
only:
- /^v\d+\.\d+\.\d+.*$/
- master
cache:
- C:\Users\appveyor\.cargo\registry
notifications:
- provider: Email
on_build_success: false
build: false