0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-19 19:42:19 +02:00

Rust: don't build any bridge/* crates by default

Some of them have external requirements that may not be installed.
This commit is contained in:
Jordan Rose 2020-11-12 10:30:07 -08:00
parent 7018432cc1
commit 1d00de7cdc
2 changed files with 9 additions and 5 deletions

View File

@ -28,10 +28,10 @@ jobs:
echo $DUPS
test -z "$DUPS"
- name: Rustfmt check
run: cargo fmt -- --check
run: cargo fmt --all -- --check
- name: Build
run: cargo build --verbose
run: cargo build --all --verbose
- name: Run tests
run: cargo test --verbose
run: cargo test --all --verbose
- name: Clippy
run: cargo clippy
run: cargo clippy --all

View File

@ -4,5 +4,9 @@ members = [
"rust/protocol",
"rust/bridge/ffi",
"rust/bridge/jni",
"rust/bridge/node"
"rust/bridge/node",
]
default-members = [
"rust/aes-gcm-siv",
"rust/protocol",
]