Skip to content

Commit ea134c2

Browse files
committed
Configure script to build with all features enables
Signed-off-by: Gowtham Suresh Kumar <gowtham.sureshkumar@arm.com>
1 parent 581bcea commit ea134c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ git submodule update --init
1414
################
1515
# Build client #
1616
################
17-
RUST_BACKTRACE=1 cargo build
17+
RUST_BACKTRACE=1 cargo build --all-features
1818

1919
# Cross-compilation tests, only the default features are tested.
2020
rustup target add armv7-unknown-linux-gnueabihf
2121
rustup target add aarch64-unknown-linux-gnu
22-
RUST_BACKTRACE=1 cargo build --target armv7-unknown-linux-gnueabihf
23-
RUST_BACKTRACE=1 cargo build --target aarch64-unknown-linux-gnu
22+
RUST_BACKTRACE=1 cargo build --target armv7-unknown-linux-gnueabihf --all-features
23+
RUST_BACKTRACE=1 cargo build --target aarch64-unknown-linux-gnu --all-features
2424

2525
#################
2626
# Static checks #

0 commit comments

Comments
 (0)