Incubation repo for orchestration
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
You can either use manually usually cargo
commands or use xtask
approach
cargo xtask - print usage
The xtask
has advantage that it builds using separate build dirs, so when building test
and target
, there is no need to rebuild each time.
Use regular commands but prefer cargo xtask
cargo xtask run --example basic
bazel run //orchestration:basic
Each component has defined test target as component:tests
so You can run them via bazel
:
bazel test //PATH_TO_COMPONENT:tests
You can also run all tests via:
bazel test //...