rusqlite/appveyor.yml
2016-01-25 18:36:06 +01:00

26 lines
797 B
YAML

environment:
TARGET: x86_64-pc-windows-msvc
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-1.6.0-${env:TARGET}.exe"
- rust-1.6.0-%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/Retail/x64/ Redist/Retail/x64/ -y > nul
- ps: Start-FileDownload 'http://sqlite.org/2015/sqlite-dll-win64-x64-3090200.zip'
- cmd: 7z e sqlite-dll-win64-x64-3090200.zip -y > nul
- SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER%
build: false
test_script:
- cargo test --lib --verbose
branches:
only:
- appveyor
cache:
- C:\Users\appveyor\.cargo