Skip to content

Commit

Permalink
DO NOT MERGE: Bend CI to use 0.9 riot-module-examples branch
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Aug 22, 2024
1 parent 6bdc5e6 commit 2cf268a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
echo '[patch.crates-io]' >> .cargo/config.toml
echo 'riot-wrappers = { path = "../", version = "*" }' >> .cargo/config.toml
echo 'riot-sys = { git = "https://github.com/RIOT-OS/rust-riot-sys" }' >> .cargo/config.toml
echo 'riot-coap-handler-demos = { git = "https://gitlab.com/etonomy/riot-module-examples", branch = "riotwrappers-vfs-no-unpin" }' >> .cargo/config.toml
- name: Pull cargo updates
# No sense in running this in parallel -- this will download the index
# and all relevant crates once, and after that, just make some notes in Cargo.lock
Expand Down Expand Up @@ -108,6 +109,7 @@ jobs:
echo '[patch.crates-io]' >> .cargo/config.toml
echo 'riot-wrappers = { path = "../", version = "*" }' >> .cargo/config.toml
echo 'riot-sys = { git = "https://github.com/RIOT-OS/rust-riot-sys" }' >> .cargo/config.toml
echo 'riot-coap-handler-demos = { git = "https://gitlab.com/etonomy/riot-module-examples", branch = "riotwrappers-vfs-no-unpin" }' >> .cargo/config.toml
- name: Pull cargo updates
# No sense in running this in parallel -- this will download the index
# and all relevant crates once, and after that, just make some notes in Cargo.lock
Expand All @@ -119,7 +121,7 @@ jobs:
for MANIF in $(find -name Cargo.toml)
do
echo "::group::Updating ${MANIF}"
cargo update -p riot-sys -p riot-wrappers --aggressive --manifest-path $MANIF
cargo update -p riot-sys -p riot-wrappers -p riot-coap-handler-demos --aggressive --manifest-path $MANIF
cargo fetch --manifest-path $MANIF
cargo tree --manifest-path $MANIF
echo "::endgroup::"
Expand Down

0 comments on commit 2cf268a

Please sign in to comment.