2016-10-15 16:09:35 +02:00
|
|
|
environment:
|
|
|
|
global:
|
|
|
|
PROJECT_NAME: watchexec
|
|
|
|
matrix:
|
|
|
|
- TARGET: x86_64-pc-windows-gnu
|
2016-10-20 20:27:11 +02:00
|
|
|
CHANNEL: nightly
|
2016-10-15 16:09:35 +02:00
|
|
|
|
|
|
|
# Install Rust and Cargo
|
|
|
|
# (Based on from https://github.com/rust-lang/libc/blob/master/appveyor.yml)
|
|
|
|
install:
|
|
|
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
2016-10-20 17:45:25 +02:00
|
|
|
- rustup-init.exe --default-host %TARGET% --default-toolchain %CHANNEL% -y
|
2016-10-15 16:09:35 +02:00
|
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
|
|
|
- if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
|
|
|
|
- rustc -V
|
|
|
|
- cargo -V
|
|
|
|
|
|
|
|
# ???
|
|
|
|
build: false
|
|
|
|
|
|
|
|
# Equivalent to Travis' `script` phase
|
|
|
|
test_script:
|
|
|
|
- cargo test --verbose
|
|
|
|
|
|
|
|
before_deploy:
|
|
|
|
# Generate artifacts for release
|
|
|
|
- cargo build --release
|
|
|
|
- mkdir staging
|
|
|
|
- copy target\release\watchexec.exe staging
|
|
|
|
- cd staging
|
|
|
|
- 7z a ../%PROJECT_NAME%-%APPVEYOR_REPO_TAG_NAME%-%TARGET%.zip *
|
|
|
|
- appveyor PushArtifact ../%PROJECT_NAME%-%APPVEYOR_REPO_TAG_NAME%-%TARGET%.zip
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
description: 'Automatically deployed release'
|
|
|
|
artifact: /.*\.zip/
|
|
|
|
auth_token:
|
2016-10-15 16:43:25 +02:00
|
|
|
secure: h1ufwX1COhKiHGgBY22L37kd1kPCTEpkiGlw4mx/7Ib5nS3SlxRvkuKwteh5sJkh
|
2016-10-15 16:09:35 +02:00
|
|
|
provider: GitHub
|
|
|
|
on:
|
|
|
|
appveyor_repo_tag: true
|
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|