rusqlite/.travis.yml

49 lines
1.6 KiB
YAML
Raw Normal View History

sudo: false
2014-11-04 12:50:47 -05:00
2017-02-07 22:20:04 -05:00
language: rust
rust:
- stable
- beta
- nightly
matrix:
fast_finish: true
2017-02-07 22:20:04 -05:00
allow_failures:
- rust: nightly
addons:
apt:
2017-03-03 21:15:54 +01:00
packages: # recommanded versions for rust-bindgen
2017-02-07 22:20:04 -05:00
- llvm-3.9-dev
- libclang-3.9-dev
2017-10-24 10:54:48 +02:00
- libsqlcipher-dev
2017-02-07 22:20:04 -05:00
2017-03-03 21:15:54 +01:00
env: # specify the clang path for rust-bindgen
2017-02-07 22:20:04 -05:00
- LIBCLANG_PATH=/usr/lib/llvm-3.9/lib
2014-11-04 11:37:40 -05:00
script:
2017-02-07 22:20:04 -05:00
- cargo build
- cargo build --features bundled
2017-10-24 10:54:48 +02:00
- cargo build --features sqlcipher
- cargo build --features "bundled sqlcipher"
2017-02-07 22:20:04 -05:00
- cargo test
- cargo test --features "backup blob extra_check"
- cargo test --features "collation functions"
- cargo test --features "hooks limits"
2017-02-07 22:20:04 -05:00
- cargo test --features load_extension
- cargo test --features trace
- cargo test --features chrono
- cargo test --features serde_json
2019-03-09 19:16:37 -08:00
- cargo test --features url
2017-02-07 22:20:04 -05:00
- cargo test --features bundled
2017-10-24 10:54:48 +02:00
- cargo test --features sqlcipher
- cargo test --features i128_blob
2019-04-08 14:19:42 -04:00
- cargo test --features uuid
2019-06-25 21:15:16 +02:00
- cargo test --features "bundled unlock_notify window"
- cargo test --features "array bundled csvtab series vtab"
- cargo test --features "backup blob chrono collation csvtab functions hooks limits load_extension serde_json trace url uuid vtab"
- cargo test --features "backup blob chrono collation csvtab functions hooks limits load_extension serde_json trace url uuid vtab buildtime_bindgen"
- cargo test --features "backup blob chrono collation csvtab functions hooks limits load_extension serde_json trace url uuid vtab bundled"
2019-11-02 10:58:12 +01:00
- cargo test --features "backup blob chrono collation csvtab functions hooks limits load_extension session serde_json trace url uuid vtab bundled buildtime_bindgen"