2015-11-03 11:33:03 -05:00
|
|
|
sudo: false
|
2017-10-24 10:54:48 +02:00
|
|
|
dist: trusty
|
2014-11-04 12:50:47 -05:00
|
|
|
|
2017-02-07 22:20:04 -05:00
|
|
|
language: rust
|
|
|
|
|
|
|
|
rust:
|
|
|
|
- stable
|
|
|
|
- beta
|
|
|
|
- nightly
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
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
|
2017-02-07 22:20:04 -05:00
|
|
|
- cargo test
|
|
|
|
- cargo test --features backup
|
|
|
|
- cargo test --features blob
|
2017-02-08 21:41:34 -05:00
|
|
|
- cargo test --features functions
|
2017-04-25 20:58:22 +02:00
|
|
|
- cargo test --features hooks
|
2017-02-07 22:20:04 -05:00
|
|
|
- cargo test --features limits
|
|
|
|
- cargo test --features load_extension
|
|
|
|
- cargo test --features trace
|
|
|
|
- cargo test --features chrono
|
|
|
|
- cargo test --features serde_json
|
|
|
|
- cargo test --features bundled
|
2017-10-24 10:54:48 +02:00
|
|
|
- cargo test --features sqlcipher
|
2018-03-24 10:15:10 +01:00
|
|
|
- cargo test --features "unlock_notify bundled"
|
2017-04-25 20:58:22 +02:00
|
|
|
- cargo test --features "backup blob chrono functions hooks limits load_extension serde_json trace"
|
|
|
|
- cargo test --features "backup blob chrono functions hooks limits load_extension serde_json trace buildtime_bindgen"
|
|
|
|
- cargo test --features "backup blob chrono functions hooks limits load_extension serde_json trace bundled"
|
|
|
|
- cargo test --features "backup blob chrono functions hooks limits load_extension serde_json trace bundled buildtime_bindgen"
|