rusqlite/appveyor.yml

25 lines
705 B
YAML
Raw Normal View History

2016-01-24 23:32:39 +08:00
environment:
TARGET: x86_64-pc-windows-msvc
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
- rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- rustc -V
- cargo -V
- ps: Start-FileDownload 'http://sqlite.org/2016/sqlite-uap-3100200.vsix'
2016-01-25 01:54:54 +08:00
- cmd: 7z e sqlite-uap-3100200.vsix DesignTime/Retail/x64/ Redist/Retail/x64/ -y > nul
- SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER%
2016-01-25 00:32:07 +08:00
# - cmd: VsixInstaller /q /a /i sqlite-uap-3100200.vsix
2016-01-24 23:32:39 +08:00
build: false
test_script:
2016-01-25 01:54:54 +08:00
- cargo test --lib
2016-01-24 23:32:39 +08:00
branches:
only:
2016-01-25 00:32:07 +08:00
- appveyor
cache:
- C:\Users\appveyor\.cargo