microsoft/openvmm

Public

mirrored fromhttps://github.com/microsoft/openvmmAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
d72b222d661d464d3fc1707cfd7e7d0cfcdaef40

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Guide/src/dev_guide/dev_tools/xflowey.md

21lines · modecode

1# cargo xflowey
2
3To implement various developer workflows (both locally, as well as in CI), the
4OpenVMM project relies on [`flowey`](./flowey/flowey.md): a custom, in-house Rust library/framework
5for writing maintainable, cross-platform automation.
6
7`cargo xflowey` is a cargo alias that makes it easy for developers to run
8`flowey`-based pipelines locally.
9
10Some particularly notable pipelines:
11
12- `cargo xflowey build-igvm` - primarily dev-tool used to build OpenHCL IGVM files locally
13- `cargo xflowey restore-packages` - restores external packages needed to compile and run OpenVMM / OpenHCL
14
15## `xflowey` vs `xtask`
16
17In a nutshell:
18
19- `cargo xtask`: implements novel, standalone tools/utilities
20- `cargo xflowey`: orchestrates invoking a sequence of tools/utilities, without
21 doing any non-trivial data processing itself
22