rusqlite/appveyor.yml
2016-01-24 17:32:07 +01:00

25 lines
697 B
YAML

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'
- cmd: 7z e sqlite-uap-3100200.vsix DesignTime/Debug/x64/ Redist/Debug/x64/ -y > nul
- SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER%
# - cmd: VsixInstaller /q /a /i sqlite-uap-3100200.vsix
build: false
test_script:
- cargo test
branches:
only:
- appveyor
cache:
- C:\Users\appveyor\.cargo