flowey_lib_hvlite/_jobs/
build_and_run_doc_tests.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Build and run the `cargo test` based doc tests.
//!
//! `cargo-nextest` does not currently support running doctests, hence the need
//! for this separate job.

use crate::run_cargo_build::common::CommonProfile;
use flowey::node::prelude::*;

flowey_request! {
    pub struct Params {
        /// Build and run doc tests for the specified target
        pub target: target_lexicon::Triple,
        /// Build and run doc tests with the specified cargo profile
        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(())
    }
}