Skip to content

Commit 93bb766

Browse files
committed
Add (and fix) i2c-passthru example with CI
1 parent 6633326 commit 93bb766

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

ci.sh

+21
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,24 @@ cargo build \
7979
cargo build \
8080
--manifest-path examples/waveshare-rp2040-keyboard-3/demo/Cargo.toml \
8181
--profile ci
82+
83+
### i2c-passthru
84+
cargo check \
85+
--manifest-path examples/i2c-passthru/icd/Cargo.toml \
86+
--features="use-std" \
87+
--profile ci
88+
89+
cargo check \
90+
--manifest-path examples/i2c-passthru/icd/Cargo.toml \
91+
--no-default-features \
92+
--target thumbv6m-none-eabi \
93+
--profile ci
94+
95+
cargo build \
96+
--manifest-path examples/i2c-passthru/rp2040/Cargo.toml \
97+
--target thumbv6m-none-eabi \
98+
--profile ci
99+
100+
cargo build \
101+
--manifest-path examples/i2c-passthru/demo/Cargo.toml \
102+
--profile ci

examples/i2c-passthru/icd/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ version = "0.2"
1616
features = ["derive"]
1717

1818
[features]
19-
use-std = []
19+
use-std = ["postcard-schema/use-std"]
2020

2121
[profile.ci]
2222
inherits = "dev"

0 commit comments

Comments
 (0)