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

//! ADO Task Wrapper: `NuGetToolInstaller@1`

use flowey::node::prelude::*;

flowey_request! {
    pub struct Request(pub WriteVar<SideEffect>);
}

new_flow_node!(struct Node);

impl FlowNode for Node {
    type Request = Request;

    fn imports(_ctx: &mut ImportCtx<'_>) {}

    fn emit(requests: Vec<Self::Request>, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
        ctx.emit_ado_step("Install nuget.exe", move |ctx| {
            requests.into_iter().for_each(|x| {
                x.0.claim(ctx);
            });
            move |_| {
                // tool is known flaky, so stick a hard-coded retry count on it
                r#"
                    - task: NuGetToolInstaller@1
                      retryCountOnTaskFailure: 3
                "#
                .into()
            }
        });

        Ok(())
    }
}