mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Test winsqlite3 and sqlcipher in CI
This commit is contained in:
parent
058023ebfe
commit
ee4a770efb
23
.github/workflows/main.yml
vendored
23
.github/workflows/main.yml
vendored
@ -54,6 +54,29 @@ jobs:
|
|||||||
RUSTFLAGS: -Ctarget-feature=+crt-static
|
RUSTFLAGS: -Ctarget-feature=+crt-static
|
||||||
run: cargo build --features bundled
|
run: cargo build --features bundled
|
||||||
|
|
||||||
|
winsqlite3:
|
||||||
|
name: Test with winsqlite3
|
||||||
|
runs-on: windows-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: hecrj/setup-rust-action@v1
|
||||||
|
# TODO: Should this test GNU toolchain? What about +crt-static?
|
||||||
|
# TODO: Is it worth testing other features?
|
||||||
|
- run: cargo build --features winsqlite3 --workspace --all-targets --verbose
|
||||||
|
- run: cargo test --features winsqlite3 --workspace --all-targets --verbose
|
||||||
|
|
||||||
|
sqlcipher:
|
||||||
|
name: Test with sqlcipher
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: hecrj/setup-rust-action@v1
|
||||||
|
- run: sudo apt-get install sqlcipher libsqlcipher-dev
|
||||||
|
- run: sqlcipher --version
|
||||||
|
# TODO: Is it worth testing other features?
|
||||||
|
- run: cargo build --features sqlcipher --workspace --all-targets --verbose
|
||||||
|
- run: cargo test --features sqlcipher --workspace --all-targets --verbose
|
||||||
|
|
||||||
sanitizer:
|
sanitizer:
|
||||||
name: Address Sanitizer
|
name: Address Sanitizer
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
Loading…
Reference in New Issue
Block a user