From a4a62b97d45daaa17fa508750d43fe4337ee0670 Mon Sep 17 00:00:00 2001 From: Mike the Tike Date: Wed, 15 Sep 2021 15:21:30 +0200 Subject: [PATCH] ci: add wallet ffi to build --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c0eb1d989..400531cc93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,13 +92,19 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - # args: --release + args: --release - name: cargo build wallet uses: actions-rs/cargo@v1 with: command: build - args: -p tari_wallet + args: --release -p tari_wallet + + - name: cargo build wallet ffi + uses: actions-rs/cargo@v1 + with: + command: build + args: --release -p tari_wallet_ffi test: name: test