rusqlite/appveyor.yml

30 lines
1.7 KiB
YAML
Raw Normal View History

2016-01-24 23:32:39 +08:00
environment:
2017-02-09 09:40:09 +08:00
TARGET: 1.15.0-x86_64-pc-windows-gnu
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
- 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
2017-03-04 04:15:54 +08:00
- ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-dll-win64-x64-3170000.zip' # download SQLite dll (useful only when the `bundled` feature is not set)
- cmd: 7z e sqlite-dll-win64-x64-3170000.zip -y > nul
- ps: Start-FileDownload 'https://sqlite.org/2017/sqlite-amalgamation-3170000.zip' # download SQLite headers (useful only when the `bundled` feature is not set)
- cmd: 7z e sqlite-amalgamation-3170000.zip -y > nul
- SET SQLITE3_LIB_DIR=%APPVEYOR_BUILD_FOLDER% # specify where the SQLite dll has been downloaded (useful only when the `bundled` feature is not set)
- SET SQLITE3_INCLUDE_DIR=%APPVEYOR_BUILD_FOLDER% # specify where the SQLite headers have been downloaded (useful only when the `bundled` feature is not set)
2016-01-24 23:32:39 +08:00
build: false
test_script:
2016-01-26 01:35:22 +08:00
- cargo test --lib --verbose
- 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"
2017-03-04 04:47:42 +08:00
- cargo test --lib --features "backup blob chrono functions limits load_extension serde_json trace buildtime_bindgen"
2017-02-04 18:01:38 +08:00
- cargo test --lib --features "backup blob chrono functions limits load_extension serde_json trace bundled"
2017-03-04 04:47:42 +08:00
- cargo test --lib --features "backup blob chrono functions limits load_extension serde_json trace bundled buildtime_bindgen"
2016-01-25 00:32:07 +08:00
cache:
- C:\Users\appveyor\.cargo