rusqlite/appveyor.yml

26 lines
704 B
YAML
Raw Normal View History

2016-01-24 23:32:39 +08:00
environment:
TARGET: 1.6.0-x86_64-pc-windows-gnu
MSYS2_BITS: 64
2016-01-24 23:32:39 +08:00
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:TARGET}.exe"
- rust-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
2016-01-24 23:32:39 +08:00
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
2016-01-24 23:32:39 +08:00
- rustc -V
- cargo -V
- 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%
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