flowey_lib_hvlite/_jobs/
test_local_flowey_build_igvm.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Encapsulates the logic of invoking `cargo xflowey build-igvm x64 --install-missing-deps`
use flowey::node::prelude::*;

use crate::_jobs::local_build_igvm::non_production_build_igvm_tool_out_name;
use crate::build_openhcl_igvm_from_recipe::OpenhclIgvmRecipe;

flowey_request! {
    pub struct Request {
        pub base_recipe: OpenhclIgvmRecipe,
        pub done: WriteVar<SideEffect>,
    }
}

new_simple_flow_node!(struct Node);

impl SimpleFlowNode for Node {
    type Request = Request;

    fn imports(ctx: &mut ImportCtx<'_>) {
        ctx.import::<crate::git_checkout_openvmm_repo::Node>();
        ctx.import::<flowey_lib_common::install_rust::Node>();
    }

    fn process_request(request: Self::Request, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
        let Request { base_recipe, done } = request;

        let hvlite_repo = ctx.reqv(crate::git_checkout_openvmm_repo::req::GetRepoDir);
        let rust_install = ctx.reqv(flowey_lib_common::install_rust::Request::EnsureInstalled);
        let gh_token = ctx.get_gh_context_var().global().token();

        let test_local = ctx.emit_rust_step(
            "test cargo xflowey build-igvm x64 --install-missing-deps",
            |ctx| {
                rust_install.claim(ctx);
                let hvlite_repo = hvlite_repo.claim(ctx);
                let gh_token = gh_token.claim(ctx);
                move |rt| {
                    let hvlite_repo = rt.read(hvlite_repo);
                    let gh_token = rt.read(gh_token);
                    let base_recipe = non_production_build_igvm_tool_out_name(&base_recipe);
                    let sh = xshell::Shell::new()?;
                    sh.change_dir(hvlite_repo);
                    xshell::cmd!(
                        sh,
                        "cargo xflowey build-igvm {base_recipe} --install-missing-deps"
                    )
                    .env("I_HAVE_A_GOOD_REASON_TO_RUN_BUILD_IGVM_IN_CI", "true")
                    .env("GITHUB_TOKEN", gh_token)
                    .run()?;
                    Ok(())
                }
            },
        );

        ctx.emit_side_effect_step([test_local], [done]);

        Ok(())
    }
}