wasmer/.appveyor.yml

34 lines
629 B
YAML
Raw Normal View History

2019-01-16 22:27:09 +00:00
branches:
except:
- master
version: "{build} ~ {branch}"
os: Visual Studio 2017
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
artifacts:
- path: target\debug\wasmer.exe
2019-01-16 22:27:09 +00:00
name: wasmer.exe
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 ../..