Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add tari_wallet_ffi check to ci #3915

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,12 @@ jobs:
with:
command: check
args: --release --all-targets
- name: cargo check ffi separately
uses: actions-rs/cargo@v1
with:
command: check
args: --release --package tari_wallet_ffi

build-stable:
name: check stable
runs-on: ubuntu-18.04
Expand Down Expand Up @@ -128,6 +134,11 @@ jobs:
with:
command: check
args: --release --all-targets
- name: cargo check ffi separately
uses: actions-rs/cargo@v1
with:
command: check
args: --release --package tari_wallet_ffi
test:
name: test
runs-on: ubuntu-18.04
Expand Down
1 change: 1 addition & 0 deletions base_layer/core/src/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
pub mod byte_counter;
pub mod hash_writer;
pub mod limited_reader;
#[cfg(feature = "base_node")]
pub mod rolling_avg;
#[cfg(feature = "base_node")]
pub mod rolling_vec;