wasmer/.appveyor.yml

48 lines
1.1 KiB
YAML
Raw Normal View History

2019-01-16 22:27:09 +00:00
version: "{build} ~ {branch}"
os: Visual Studio 2017
2019-02-14 23:30:42 +00:00
# Do not build feature branch with open Pull Requests
skip_branch_with_pr: true
2019-01-16 22:27:09 +00:00
environment:
matrix:
- CHANNEL: stable
ARCH: x86_64
ABI: msvc
TARGET: x86_64-pc-windows-msvc
2019-01-16 22:27:09 +00:00
install:
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -yv --default-host %target%
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
2019-01-16 22:27:09 +00:00
- rustc -vV
- cargo -vV
build_script:
- cargo build --verbose
2019-01-16 22:27:09 +00:00
test_script:
- set RUST_BACKTRACE=1
- cd ./lib/spectests && cargo test -- --test-threads 1 && cd ../..
2019-02-14 23:30:42 +00:00
before_deploy:
- cd installer
- iscc wasmer.iss
- copy /y .\WasmerInstaller.exe ..\WasmerInstaller-%APPVEYOR_REPO_TAG_NAME%.exe
- appveyor PushArtifact WasmerInstaller-%APPVEYOR_REPO_TAG_NAME%.exe
artifacts:
- path: WasmerInstaller-%APPVEYOR_REPO_TAG_NAME%.exe
name: WasmerInstaller.exe
deploy:
description: 'WasmerInstaller'
artifact: /.*\.exe/
auth_token:
secure: CaKtncy7S1PWxzDUQ0p2264pe3HwxzDn5VIyRizDaa72/SVfskNcoMjwwRh0ut22
provider: GitHub
on:
branch: master
appveyor_repo_tag: true