flowey_lib_hvlite/_jobs/
build_and_run_doc_tests.rsuse crate::run_cargo_build::common::CommonProfile;
use flowey::node::prelude::*;
flowey_request! {
pub struct Params {
pub target: target_lexicon::Triple,
pub profile: CommonProfile,
pub done: WriteVar<SideEffect>,
}
}
new_simple_flow_node!(struct Node);
impl SimpleFlowNode for Node {
type Request = Params;
fn imports(ctx: &mut ImportCtx<'_>) {
ctx.import::<crate::git_checkout_openvmm_repo::Node>();
ctx.import::<crate::install_openvmm_rust_build_essential::Node>();
}
fn process_request(request: Self::Request, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
let Params {
target,
profile,
done,
} = request;
let rust_installed = ctx.reqv(crate::install_openvmm_rust_build_essential::Request);
let openvmm_repo_path = ctx.reqv(crate::git_checkout_openvmm_repo::req::GetRepoDir);
ctx.emit_rust_step(format!("run doctests for {target}"), |ctx| {
done.claim(ctx);
rust_installed.claim(ctx);
let openvmm_repo_path = openvmm_repo_path.claim(ctx);
move |rt| {
let sh = xshell::Shell::new()?;
let target = target.to_string();
let profile = match profile {
CommonProfile::Release => "release",
CommonProfile::Debug => "dev",
};
sh.change_dir(rt.read(openvmm_repo_path));
xshell::cmd!(sh, "cargo test --locked --doc --workspace --no-fail-fast --target {target} --profile {profile}").run()?;
Ok(())
}
});
Ok(())
}
}