diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d7d6167..122480d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -55,6 +56,7 @@ jobs: do echo "::group::Updating ${MANIF}" cargo update -p riot-sys -p riot-wrappers --aggressive --manifest-path $MANIF + cargo update -p riot-coap-handler-demos --aggressive --manifest-path $MANIF || true cargo fetch --manifest-path $MANIF cargo tree --manifest-path $MANIF echo "::endgroup::" @@ -108,6 +110,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 @@ -120,6 +123,7 @@ jobs: do echo "::group::Updating ${MANIF}" cargo update -p riot-sys -p riot-wrappers --aggressive --manifest-path $MANIF + cargo update -p riot-coap-handler-demos --aggressive --manifest-path $MANIF || true cargo fetch --manifest-path $MANIF cargo tree --manifest-path $MANIF echo "::endgroup::"