aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain Goyet <[email protected]>2024-09-05 18:01:05 -0400
committerRomain Goyet <[email protected]>2024-09-05 18:01:05 -0400
commitccce870642f295cda901493df422b25d211da503 (patch)
tree22932881a5a0d114279dc31977b2e3a38c0eab45
parentf0a86070512ad739641cee7d9fa39d63f5c8a9f6 (diff)
ci: Fix the "test" task when using stm32-metapac from a CI artifact
-rwxr-xr-x.github/ci/test.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/ci/test.sh b/.github/ci/test.sh
index da0021684..0de265049 100755
--- a/.github/ci/test.sh
+++ b/.github/ci/test.sh
@@ -8,6 +8,10 @@ export RUSTUP_HOME=/ci/cache/rustup
8export CARGO_HOME=/ci/cache/cargo 8export CARGO_HOME=/ci/cache/cargo
9export CARGO_TARGET_DIR=/ci/cache/target 9export CARGO_TARGET_DIR=/ci/cache/target
10 10
11# needed for "dumb HTTP" transport support
12# used when pointing stm32-metapac to a CI-built one.
13export CARGO_NET_GIT_FETCH_WITH_CLI=true
14
11cargo test --manifest-path ./embassy-futures/Cargo.toml 15cargo test --manifest-path ./embassy-futures/Cargo.toml
12cargo test --manifest-path ./embassy-sync/Cargo.toml 16cargo test --manifest-path ./embassy-sync/Cargo.toml
13cargo test --manifest-path ./embassy-embedded-hal/Cargo.toml 17cargo test --manifest-path ./embassy-embedded-hal/Cargo.toml