Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Aug 23, 2024
1 parent 1c5c464 commit d780033
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ on:

jobs:
build-docs:
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
runs-on: ubuntu-latest
container: riot/riotbuild
steps:
Expand Down
11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,12 @@ embassy-executor-riot = { git = "https://gitlab.com/etonomy/riot-module-examples
rust_riotmodules = { path = "RIOT/sys/rust_riotmodules", features = [ "riot-module-shell-democommands" ] }

[patch.crates-io]
riot-sys = { git = "https://github.com/RIOT-OS/rust-riot-sys/" }
riot-wrappers = { git = "https://github.com/RIOT-OS/rust-riot-wrappers/" }
#riot-sys = { git = "https://github.com/RIOT-OS/rust-riot-sys/" }
#riot-wrappers = { git = "https://github.com/RIOT-OS/rust-riot-wrappers/" }
riot-wrappers = { path = "../riot-wrappers" }
riot-sys = { path = "../riot-sys" , version = "*"}

[patch."https://gitlab.com/etonomy/riot-module-examples/"]
riot-shell-commands = { path = "../riot-module-examples/riot-shell-commands/" }
riot-coap-handler-demos = { path = "../riot-module-examples/riot-coap-handler-demos/" }
embassy-executor-riot = { path = "../riot-module-examples/embassy-executor-riot/" }

0 comments on commit d780033

Please sign in to comment.