76b413b5f7
* appveyor * proper dist name * quote * win-build config * proper build section * tests in release * plugin dir * cache binaries * quotes * escaped quotes * forces user dir * fixes * syntax * proper cahce dir * quotes? * root nsis instead of bin * submodules init * artifact path fix * no submodule * raw link here * another way to force cargo cache * include vc++ 2015 redist * fix name of the dist * ETHCORE -> Ethcore
30 lines
952 B
YAML
30 lines
952 B
YAML
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
install:
|
|
- git submodule update --init --recursive
|
|
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-1.9.0-x86_64-pc-windows-msvc.exe"
|
|
- ps: Start-FileDownload "https://github.com/ethcore/win-build/raw/master/SimpleFC.dll" -FileName nsis\SimpleFC.dll
|
|
- ps: Start-FileDownload "https://github.com/ethcore/win-build/raw/master/vc_redist.x64.exe" -FileName nsis\vc_redist.x64.exe
|
|
- rust-1.9.0-x86_64-pc-windows-msvc.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
|
|
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin;C:\Program Files (x86)\NSIS
|
|
- rustc -V
|
|
- cargo -V
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- cargo test --verbose --release
|
|
|
|
after_test:
|
|
- cargo build --verbose --release
|
|
- makensis.exe nsis\installer.nsi
|
|
|
|
artifacts:
|
|
- path: nsis\installer.exe
|
|
name: Windows Installer (x86_64)
|
|
|
|
cache:
|
|
- target
|
|
- C:\users\appveyor\.cargo -> appveyor.yml
|