-
I am going to make some enhancements to the dbus interface to otbr-agent and need to add and run the related tests. I'm new to development on this project, so I'm looking for the recommended strategy. There are many build and runtime dependencies for this stuff so I was hoping to find a docker environment that had everything required to build and run these tests but I must be missing it. Pointers appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
As far as I know there isn't such a docker environment maintained by openthread for developing openthread projects. You may consider building a container which installs the dependencies like https://github.com/openthread/ot-br-posix/blob/main/script/bootstrap. On the other hand, there are docker containers used for running the multi-BR test cases. The container may be useful for developing OTBR, if some necessary changes are applied. See this script for how it builds the container. |
Beta Was this translation helpful? Give feedback.
As far as I know there isn't such a docker environment maintained by openthread for developing openthread projects. You may consider building a container which installs the dependencies like https://github.com/openthread/ot-br-posix/blob/main/script/bootstrap.
On the other hand, there are docker containers used for running the multi-BR test cases. The container may be useful for developing OTBR, if some necessary changes are applied. See this script for how it builds the container.