2015-11-04 00:33:03 +08:00
|
|
|
sudo: false
|
2014-11-05 01:50:47 +08:00
|
|
|
|
2017-02-08 11:20:04 +08:00
|
|
|
language: rust
|
|
|
|
|
|
|
|
rust:
|
|
|
|
- stable
|
|
|
|
- beta
|
|
|
|
- nightly
|
|
|
|
|
|
|
|
matrix:
|
2018-11-01 18:39:49 +08:00
|
|
|
fast_finish: true
|
2017-02-08 11:20:04 +08:00
|
|
|
allow_failures:
|
|
|
|
- rust: nightly
|
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
2020-12-25 05:29:19 +08:00
|
|
|
packages: # recommended versions for rust-bindgen
|
2017-02-08 11:20:04 +08:00
|
|
|
- llvm-3.9-dev
|
|
|
|
- libclang-3.9-dev
|
2017-10-24 16:54:48 +08:00
|
|
|
- libsqlcipher-dev
|
2017-02-08 11:20:04 +08:00
|
|
|
|
2017-03-04 04:15:54 +08:00
|
|
|
env: # specify the clang path for rust-bindgen
|
2017-02-08 11:20:04 +08:00
|
|
|
- LIBCLANG_PATH=/usr/lib/llvm-3.9/lib
|
|
|
|
|
2014-11-05 00:37:40 +08:00
|
|
|
script:
|
2017-02-08 11:20:04 +08:00
|
|
|
- cargo build
|
|
|
|
- cargo build --features bundled
|
2017-10-24 16:54:48 +08:00
|
|
|
- cargo build --features sqlcipher
|
2019-04-20 01:22:03 +08:00
|
|
|
- cargo build --features "bundled sqlcipher"
|
2017-02-08 11:20:04 +08:00
|
|
|
- cargo test
|
2019-08-27 02:21:23 +08:00
|
|
|
- cargo test --features "backup blob extra_check"
|
2019-06-26 02:33:49 +08:00
|
|
|
- cargo test --features "collation functions"
|
|
|
|
- cargo test --features "hooks limits"
|
2017-02-08 11:20:04 +08:00
|
|
|
- cargo test --features load_extension
|
|
|
|
- cargo test --features trace
|
|
|
|
- cargo test --features chrono
|
|
|
|
- cargo test --features serde_json
|
2019-03-10 11:16:37 +08:00
|
|
|
- cargo test --features url
|
2017-02-08 11:20:04 +08:00
|
|
|
- cargo test --features bundled
|
2017-10-24 16:54:48 +08:00
|
|
|
- cargo test --features sqlcipher
|
Add a feature for storing i128 as blobs.
This is behind the `i128_blob` feature.
Blobs are stored as 16 byte big-endian values, with their most significant bit
flipped. This is so that sorting, comparison, etc all work properly, even with
negative numbers. This also allows the representation to be stable across
different computers.
It's possible that the `FromSql` implementation should handle the case that the
real value is stored in an integer. I didn't do this, but would be willing to
make the change. I don't think we should store them this way though, since I
don't think users would be able to sort/compare them sanely.
Support for `u128` is not implemented, as comparison with i128 values would work
strangely. This also is consistent with `u64` not being allowed, not that I
think that would be reason enough on it's own.
The `byteorder` crate is used if this feature is flipped, as it's quite small
and implements things more or less optimally. If/when `i128::{to,from}_be_bytes`
gets stabilized (https://github.com/rust-lang/rust/issues/52963), we should
probably use that instead.
2018-10-09 03:04:07 +08:00
|
|
|
- cargo test --features i128_blob
|
2019-04-09 02:19:42 +08:00
|
|
|
- cargo test --features uuid
|
2019-06-26 03:15:16 +08:00
|
|
|
- cargo test --features "bundled unlock_notify window"
|
2019-07-12 01:21:54 +08:00
|
|
|
- cargo test --features "array bundled csvtab series vtab"
|
2019-06-18 01:20:53 +08:00
|
|
|
- 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 17:58:12 +08:00
|
|
|
- cargo test --features "backup blob chrono collation csvtab functions hooks limits load_extension session serde_json trace url uuid vtab bundled buildtime_bindgen"
|