2016-01-24 23:32:39 +08:00
|
|
|
environment:
|
2017-01-26 07:05:29 +08:00
|
|
|
TARGET: 1.14.0-x86_64-pc-windows-gnu
|
2016-01-29 01:25:33 +08:00
|
|
|
MSYS2_BITS: 64
|
2016-01-24 23:32:39 +08:00
|
|
|
install:
|
2016-01-29 02:10:37 +08:00
|
|
|
- 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
|
2016-01-29 01:25:33 +08:00
|
|
|
- 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
|
2016-01-29 03:35:00 +08:00
|
|
|
- ps: Start-FileDownload 'http://sqlite.org/2016/sqlite-dll-win64-x64-3100200.zip'
|
2016-01-29 03:26:59 +08:00
|
|
|
- cmd: 7z e sqlite-dll-win64-x64-3100200.zip -y > nul
|
2016-01-25 00:00:57 +08:00
|
|
|
- SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER%
|
2016-01-24 23:32:39 +08:00
|
|
|
|
|
|
|
build: false
|
|
|
|
|
|
|
|
test_script:
|
2016-01-26 01:35:22 +08:00
|
|
|
- cargo test --lib --verbose
|
2016-12-31 14:09:21 +08:00
|
|
|
- cargo test --lib --verbose --features bundled
|
2017-02-04 18:01:38 +08:00
|
|
|
- cargo test --lib --features "backup blob chrono functions limits load_extension serde_json trace"
|
|
|
|
- cargo test --lib --features "backup blob chrono functions limits load_extension serde_json trace bundled"
|
2016-01-25 00:32:07 +08:00
|
|
|
|
|
|
|
cache:
|
|
|
|
- C:\Users\appveyor\.cargo
|