flowey_cli/pipeline_resolver/ado_yaml.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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
use super::common_yaml::BashCommands;
use super::common_yaml::FloweySource;
use super::common_yaml::check_generated_yaml_and_json;
use super::common_yaml::job_flowey_bootstrap_source;
use super::common_yaml::write_generated_yaml_and_json;
use super::generic::ResolvedJobArtifact;
use super::generic::ResolvedJobUseParameter;
use crate::cli::exec_snippet::FloweyPipelineStaticDb;
use crate::cli::exec_snippet::VAR_DB_SEEDVAR_FLOWEY_WORKING_DIR;
use crate::cli::pipeline::CheckMode;
use crate::flow_resolver::stage1_dag::OutputGraphEntry;
use crate::flow_resolver::stage1_dag::Step;
use crate::pipeline_resolver::generic::ResolvedPipeline;
use crate::pipeline_resolver::generic::ResolvedPipelineJob;
use anyhow::Context;
use flowey_core::node::FlowArch;
use flowey_core::node::FlowBackend;
use flowey_core::node::FlowPlatform;
use flowey_core::node::FlowPlatformKind;
use flowey_core::node::NodeHandle;
use flowey_core::pipeline::internal::AdoPool;
use flowey_core::pipeline::internal::InternalAdoResourcesRepository;
use std::collections::BTreeMap;
use std::collections::BTreeSet;
use std::fmt::Write;
use std::path::Path;
/// We use $(Build.StagingDirectory)/.flowey-internal instead
/// of $(Agent.TempDirectory) to (hopefully) guarantee that this folder
/// resides on the same mount-point as the repos being cloned.
///
/// violating this property would result in calls to `fs::rename` in
/// downstream flowey nodes to fail.
const FLOWEY_TEMP_DIR: &str = "$(Build.StagingDirectory)/.flowey-internal";
/// Emit a pipeline as a single self-contained ADO yaml file
pub fn ado_yaml(
pipeline: ResolvedPipeline,
runtime_debug_log: bool,
repo_root: &Path,
pipeline_file: &Path,
flowey_crate: &str,
check: CheckMode,
) -> anyhow::Result<()> {
if pipeline_file.extension().and_then(|s| s.to_str()) != Some("yaml") {
anyhow::bail!("pipeline name must end with .yaml")
}
let ResolvedPipeline {
graph,
order,
parameters,
ado_name,
ado_schedule_triggers,
ado_ci_triggers,
ado_pr_triggers,
ado_bootstrap_template,
ado_resources_repository,
ado_post_process_yaml_cb,
ado_variables,
ref ado_job_id_overrides,
gh_name: _,
gh_schedule_triggers: _,
gh_ci_triggers: _,
gh_pr_triggers: _,
gh_bootstrap_template: _,
} = pipeline;
let mut job_flowey_source: BTreeMap<petgraph::prelude::NodeIndex, FloweySource> =
job_flowey_bootstrap_source(&graph, &order);
let mut pipeline_static_db = FloweyPipelineStaticDb {
flow_backend: crate::cli::FlowBackendCli::Ado,
var_db_backend_kind: crate::cli::exec_snippet::VarDbBackendKind::Json,
job_reqs: BTreeMap::new(),
};
let mut ado_jobs = Vec::new();
for job_idx in order {
let ResolvedPipelineJob {
ref root_nodes,
ref patches,
ref label,
platform,
arch,
cond_param_idx,
ref ado_pool,
gh_override_if: _,
gh_global_env: _,
gh_pool: _,
gh_permissions: _,
ref external_read_vars,
ref parameters_used,
ref artifacts_used,
ref artifacts_published,
ref ado_variables,
} = graph[job_idx];
let flowey_source = job_flowey_source.remove(&job_idx).unwrap();
let (steps, req_db) = resolve_flow_as_ado_yaml_steps(
root_nodes
.clone()
.into_iter()
.map(|(node, requests)| (node, (true, requests)))
.collect(),
patches.clone(),
external_read_vars.clone(),
platform,
arch,
job_idx.index(),
)
.context(format!("in job '{label}'"))?;
{
let existing = pipeline_static_db.job_reqs.insert(job_idx.index(), req_db);
assert!(existing.is_none())
}
let mut ado_steps = Vec::new();
if let FloweySource::Bootstrap(artifact, publish) = &flowey_source {
// actual artifact publish happens at the end of the job
let _ = (artifact, publish);
if ado_bootstrap_template.is_empty() {
anyhow::bail!(
"Did not specify flowey bootstrap template. Please provide one using `Pipeline::ado_set_flowey_bootstrap_template`"
)
}
let ado_bootstrap_template = ado_bootstrap_template
.replace("{{FLOWEY_BIN_EXTENSION}}", platform.exe_suffix())
.replace("{{FLOWEY_CRATE}}", flowey_crate)
.replace(
"{{FLOWEY_PIPELINE_PATH}}",
&pipeline_file.with_extension("").display().to_string(),
)
.replace(
"{{FLOWEY_TARGET}}",
match platform {
FlowPlatform::Windows => "x86_64-pc-windows-msvc",
FlowPlatform::Linux(_) => "x86_64-unknown-linux-gnu",
platform => anyhow::bail!("unsupported ADO platform {platform:?}"),
},
)
.replace(
"{{FLOWEY_OUTDIR}}",
"$(FLOWEY_TEMP_DIR)/bootstrapped-flowey",
);
let bootstrap_steps: serde_yaml::Sequence =
serde_yaml::from_str(&ado_bootstrap_template)
.context("malformed flowey bootstrap template")?;
ado_steps.push({
let mut map = serde_yaml::Mapping::new();
map.insert("bash".into(), "echo \"injected!\"".into());
map.insert("displayName".into(), "πΌπ₯Ύ Bootstrap flowey".into());
map.into()
});
ado_steps.extend(bootstrap_steps);
}
// the first few steps in any job are some "artisan" code, which
// downloads the previously bootstrapped flowey artifact and set up
// various vars that flowey will then rely on throughout the rest
// of the job
// download previously bootstrapped flowey
if let FloweySource::Consume(artifact) = &flowey_source {
ado_steps.push({
let map: serde_yaml::Mapping = serde_yaml::from_str(&format!(
r#"
task: DownloadPipelineArtifact@2
displayName: 'πΌπ₯Ύ Download bootstrapped flowey'
inputs:
artifact: {artifact}
path: $(FLOWEY_TEMP_DIR)/bootstrapped-flowey
"#
))
.unwrap();
map.into()
});
}
// also download any artifacts that'll be used
for ResolvedJobArtifact {
flowey_var: _,
name,
} in artifacts_used
{
ado_steps.push({
let map: serde_yaml::Mapping = serde_yaml::from_str(&format!(
r#"
task: DownloadPipelineArtifact@2
displayName: 'πΌπ¦ Download {name}'
inputs:
artifact: {name}
path: $(FLOWEY_TEMP_DIR)/used_artifacts/{name}
"#
))
.unwrap();
map.into()
});
}
let flowey_bin = platform.binary("flowey");
let flowey_executable_bash = format!(
r###"
set -e
AgentTempDirNormal="$(FLOWEY_TEMP_DIR)"
AgentTempDirNormal=$(echo "$AgentTempDirNormal" | sed -e 's|\\|\/|g' -e 's|^\([A-Za-z]\)\:/\(.*\)|/\L\1\E/\2|')
echo "##vso[task.setvariable variable=AgentTempDirNormal;]$AgentTempDirNormal"
chmod +x $AgentTempDirNormal/bootstrapped-flowey/{flowey_bin}
FLOWEY_BIN="$AgentTempDirNormal/bootstrapped-flowey/{flowey_bin}"
echo "##vso[task.setvariable variable=FLOWEY_BIN;]$FLOWEY_BIN"
"###
).trim_start().to_string();
ado_steps.push({
let mut map = serde_yaml::Mapping::new();
map.insert(
"bash".into(),
serde_yaml::Value::String(flowey_executable_bash),
);
map.insert("displayName".into(), "Set flowey path".into());
map.into()
});
let mut flowey_bootstrap_bash = String::new();
let bootstrap_bash_var_db_inject = |var, is_raw_string| {
crate::cli::var_db::construct_var_db_cli(
"$FLOWEY_BIN",
job_idx.index(),
var,
false,
true,
None,
is_raw_string,
None,
None,
)
};
// and now use those vars to do some flowey bootstrap
writeln!(flowey_bootstrap_bash, "{}", {
let runtime_debug_level = if runtime_debug_log { "debug" } else { "info" };
let var_db_insert_runtime_debug_level =
bootstrap_bash_var_db_inject("FLOWEY_LOG", false);
let var_db_insert_working_dir =
bootstrap_bash_var_db_inject(VAR_DB_SEEDVAR_FLOWEY_WORKING_DIR, true);
// Need to use "normalized" path in cases where the path is being
// used directly from a bash context, as is the case when we are
// trying to invoke `flowey.exe` in argv0 position)
//
// https://github.com/microsoft/azure-pipelines-tasks/issues/10653#issuecomment-585669089
format!(
r###"
set -e
echo '"{runtime_debug_level}"' | {var_db_insert_runtime_debug_level}
echo "$(FLOWEY_TEMP_DIR)/work" | {var_db_insert_working_dir}
"###
)
.trim_start()
.to_owned()
})?;
// import pipeline vars being used by the job into flowey
for ResolvedJobUseParameter {
flowey_var,
pipeline_param_idx,
} in parameters_used
{
let is_string = matches!(
parameters[*pipeline_param_idx],
flowey_core::pipeline::internal::Parameter::String { .. }
);
let is_bool = matches!(
parameters[*pipeline_param_idx],
flowey_core::pipeline::internal::Parameter::Bool { .. }
);
let name = parameters[*pipeline_param_idx].name();
// ADO resolves bools as `True` and `False`, _sigh_
let with_lowercase = if is_bool {
r#" | tr '[:upper:]' '[:lower:]'"#
} else {
""
};
let var_db_inject_cmd = bootstrap_bash_var_db_inject(flowey_var, is_string);
let cmd = format!(
r#"
cat <<'EOF'{with_lowercase} | {var_db_inject_cmd}
${{{{ parameters.{name} }}}}
EOF
"#
)
.trim()
.to_string();
writeln!(flowey_bootstrap_bash, "{}", cmd)?;
}
// next, emit ado steps to create dirs for artifacts which will be
// published
for ResolvedJobArtifact { flowey_var, name } in artifacts_published {
writeln!(
flowey_bootstrap_bash,
r#"mkdir -p "$(AgentTempDirNormal)/publish_artifacts/{name}""#
)?;
let var_db_inject_cmd = bootstrap_bash_var_db_inject(flowey_var, true);
writeln!(
flowey_bootstrap_bash,
r#"echo "$(FLOWEY_TEMP_DIR)/publish_artifacts/{name}" | {var_db_inject_cmd}"#,
)?;
}
// lastly, emit ado steps that report the dirs for any artifacts which
// are used by this job
for ResolvedJobArtifact { flowey_var, name } in artifacts_used {
// do NOT use ADO macro syntax $(...), since this is in the same
// bootstrap block as where those ADO vars get defined, meaning it's
// not available yet!
let var_db_inject_cmd = bootstrap_bash_var_db_inject(flowey_var, true);
writeln!(
flowey_bootstrap_bash,
r#"echo "$(FLOWEY_TEMP_DIR)/used_artifacts/{name}" | {var_db_inject_cmd}"#,
)?;
}
// if this was a bootstrap job, also take a moment to run a "self check"
// to make sure that the current checked-in template matches the one it
// expected
if let FloweySource::Bootstrap(..) = &flowey_source {
let mut current_invocation = std::env::args().collect::<Vec<_>>();
current_invocation[0] = "$(FLOWEY_BIN)".into();
// if this code path is run while generating the YAML to compare the
// check against, we want to remove the --runtime or --check param from the
// current call, or else there'll be a dupe
let mut strip_parameter = |prefix: &str| {
if let Some(i) = current_invocation
.iter()
.position(|s| s.starts_with(prefix))
{
current_invocation.remove(i);
if !current_invocation[i].starts_with(prefix) {
current_invocation.remove(i);
}
}
};
strip_parameter("--runtime");
strip_parameter("--check");
// insert the --check bit of the call alongside the --out param
{
let i = current_invocation
.iter()
.position(|s| s.starts_with("--out"))
.unwrap();
let current_yaml = match platform.kind() {
FlowPlatformKind::Windows => {
r#"$ESCAPED_AGENT_TEMPDIR\\bootstrapped-flowey\\pipeline.yaml"#
}
FlowPlatformKind::Unix => {
r#"$ESCAPED_AGENT_TEMPDIR/bootstrapped-flowey/pipeline.yaml"#
}
};
current_invocation.insert(i, current_yaml.into());
current_invocation.insert(i, "--runtime".into());
}
// Need to use an escaped version of the "true" windows/linux path
// here, or else the --check will fail.
let cmd = format!(
r###"
ESCAPED_AGENT_TEMPDIR=$(
cat <<'EOF' | sed 's/\\/\\\\/g'
$(FLOWEY_TEMP_DIR)
EOF
)
{}
"###,
current_invocation.join(" ")
);
ado_steps.push({
let mut map = serde_yaml::Mapping::new();
map.insert(
"bash".into(),
serde_yaml::Value::String(cmd.trim().to_string()),
);
map.insert("displayName".into(), "πΌπ Self-check YAML".into());
map.into()
})
}
ado_steps.push({
let mut map = serde_yaml::Mapping::new();
map.insert(
"bash".into(),
serde_yaml::Value::String(flowey_bootstrap_bash),
);
map.insert("displayName".into(), "πΌπ« Initialize job".into());
map.into()
});
// now that we've done all the job-level bootstrapping, we can emit all
// the actual steps the user cares about
ado_steps.extend(steps);
// ..and once that's done, the last order of business is to emit some
// ado steps to publish the various artifacts created by this job
for ResolvedJobArtifact {
flowey_var: _,
name,
} in artifacts_published
{
ado_steps.push({
let map: serde_yaml::Mapping = serde_yaml::from_str(&format!(
r#"
publish: $(FLOWEY_TEMP_DIR)/publish_artifacts/{name}
displayName: 'πΌπ¦ Publish {name}'
artifact: {name}
"#
))
.unwrap();
map.into()
});
}
// also, if this job also bootstrapped flowey that other nodes depend
// on, make sure to publish it!
if let FloweySource::Bootstrap(artifact, true) = flowey_source {
// don't leak the bootstrap job's runtime var db
ado_steps.push({
let mut map = serde_yaml::Mapping::new();
map.insert(
"bash".into(),
serde_yaml::Value::String(format!(
"rm $(AgentTempDirNormal)/bootstrapped-flowey/job{}.json",
job_idx.index()
)),
);
map.insert("displayName".into(), "πΌπ§Ό Redact bootstrap var db".into());
map.into()
});
ado_steps.push({
let map: serde_yaml::Mapping = serde_yaml::from_str(&format!(
r#"
publish: $(FLOWEY_TEMP_DIR)/bootstrapped-flowey
displayName: 'πΌπ₯Ύ Publish bootstrapped flowey'
artifact: {artifact}
"#
))
.unwrap();
map.into()
});
}
// ADO has this "helpful" default behavior where if you don't explicitly
// include a checkout step, it'll just auto-checkout the current repo.
//
// Work around this nonsense by doing a pre-pass over the emitted
// steps to enumerate how many steps start with `- checkout:`, and
// if the number is zero, emit an explicit `- checkout: none`.
{
let mut found = false;
for val in &ado_steps {
if let Some((key, _val)) = val.as_mapping().unwrap().iter().next() {
let Some(key) = key.as_str() else { continue };
if key == "checkout" {
found = true;
break;
}
}
}
if !found {
ado_steps.insert(0, {
let map: serde_yaml::Mapping = serde_yaml::from_str("checkout: none").unwrap();
map.into()
});
}
}
// Convert the pool information to the structured format
let AdoPool {
name: pool_name,
demands,
} = ado_pool
.clone()
.context(format!("must specify ADO pool for job '{label}'"))?;
let pool = if demands.is_empty() {
schema_ado_yaml::Pool::Pool(pool_name)
} else {
schema_ado_yaml::Pool::PoolWithMetadata(
[
("name".into(), pool_name.into()),
("demands".into(), demands.into()),
]
.into(),
)
};
let get_job_id = |id: usize| {
ado_job_id_overrides
.get(&id)
.cloned()
.unwrap_or_else(|| format!("job{}", id.clone()))
};
ado_jobs.push(schema_ado_yaml::Job {
job: get_job_id(job_idx.index()),
display_name: label.clone(),
pool,
depends_on: {
graph
.edges_directed(job_idx, petgraph::Direction::Incoming)
.map(|e| {
use petgraph::prelude::*;
get_job_id(e.source().index())
})
.collect()
},
variables: {
let mut ado_variables: Vec<schema_ado_yaml::Variable> = ado_variables
.clone()
.into_iter()
.map(|(name, value)| schema_ado_yaml::Variable { name, value })
.collect();
ado_variables.push(schema_ado_yaml::Variable {
name: "FLOWEY_TEMP_DIR".into(),
value: FLOWEY_TEMP_DIR.into(),
});
Some(ado_variables)
},
steps: ado_steps,
condition: Some(if let Some(cond_param_idx) = cond_param_idx {
format!(
"and(eq('${{{{ parameters.{} }}}}', 'true'), succeeded(), not(canceled()))",
parameters[cond_param_idx].name()
)
} else {
"and(succeeded(), not(canceled()))".into()
}),
})
}
let ado_pipeline = schema_ado_yaml::Pipeline {
name: ado_name,
trigger: Some(match ado_ci_triggers {
None => schema_ado_yaml::CiTrigger::None(()),
Some(t) => {
let flowey_core::pipeline::AdoCiTriggers {
branches,
exclude_branches,
batch,
} = t;
schema_ado_yaml::CiTrigger::Some {
batch,
branches: schema_ado_yaml::TriggerBranches {
include: branches,
exclude: if exclude_branches.is_empty() {
None
} else {
Some(exclude_branches)
},
},
}
}
}),
pr: Some(match ado_pr_triggers {
None => schema_ado_yaml::PrTrigger::None(()),
Some(t) => {
let flowey_core::pipeline::AdoPrTriggers {
branches,
exclude_branches,
run_on_draft,
auto_cancel,
} = t;
schema_ado_yaml::PrTrigger::Some {
auto_cancel,
drafts: run_on_draft,
branches: schema_ado_yaml::TriggerBranches {
include: branches,
exclude: if exclude_branches.is_empty() {
None
} else {
Some(exclude_branches)
},
},
}
}
}),
schedules: if ado_schedule_triggers.is_empty() {
None
} else {
Some(
ado_schedule_triggers
.into_iter()
.map(|t| {
let flowey_core::pipeline::AdoScheduleTriggers {
display_name,
branches,
exclude_branches,
cron,
} = t;
schema_ado_yaml::Schedule {
cron,
display_name,
branches: schema_ado_yaml::TriggerBranches {
include: branches,
exclude: if exclude_branches.is_empty() {
None
} else {
Some(exclude_branches)
},
},
batch: false,
}
})
.collect(),
)
},
variables: if !ado_variables.is_empty() {
Some(
ado_variables
.into_iter()
.map(|(name, value)| schema_ado_yaml::Variable { name, value })
.collect(),
)
} else {
None
},
stages: None,
jobs: Some(ado_jobs),
parameters: if !parameters.is_empty() {
Some(
parameters
.clone()
.into_iter()
.map(|param| match param {
flowey_core::pipeline::internal::Parameter::Bool {
name,
description,
kind: _,
default,
} => schema_ado_yaml::Parameter {
name,
display_name: description,
ty: schema_ado_yaml::ParameterType::Boolean { default },
},
flowey_core::pipeline::internal::Parameter::String {
name,
description,
kind: _,
default,
possible_values,
} => schema_ado_yaml::Parameter {
name,
display_name: description,
ty: schema_ado_yaml::ParameterType::String {
default,
values: possible_values,
},
},
flowey_core::pipeline::internal::Parameter::Num {
name,
description,
kind: _,
default,
possible_values,
} => schema_ado_yaml::Parameter {
name,
display_name: description,
ty: schema_ado_yaml::ParameterType::Number {
default,
values: possible_values,
},
},
})
.collect(),
)
} else {
None
},
resources: {
if ado_resources_repository.is_empty() {
None
} else {
Some(schema_ado_yaml::Resources {
repositories: ado_resources_repository
.into_iter()
.map(
|InternalAdoResourcesRepository {
repo_id,
repo_type,
name,
git_ref,
endpoint,
}| {
use flowey_core::pipeline::AdoResourcesRepositoryRef;
use flowey_core::pipeline::AdoResourcesRepositoryType;
schema_ado_yaml::ResourcesRepository {
repository: repo_id,
endpoint,
name,
r#ref: match git_ref {
AdoResourcesRepositoryRef::Fixed(s) => s,
AdoResourcesRepositoryRef::Parameter(idx) => {
let name = parameters[idx].name();
format!("${{{{ parameters.{name} }}}}")
}
},
r#type: match repo_type {
AdoResourcesRepositoryType::AzureReposGit => {
schema_ado_yaml::ResourcesRepositoryType::Git
}
AdoResourcesRepositoryType::GitHub => {
schema_ado_yaml::ResourcesRepositoryType::GitHub
}
},
}
},
)
.collect::<Vec<_>>(),
})
}
},
extends: None,
};
match check {
CheckMode::Check(_) | CheckMode::Runtime(_) => check_generated_yaml_and_json(
&ado_pipeline,
&pipeline_static_db,
check,
repo_root,
pipeline_file,
ado_post_process_yaml_cb,
),
CheckMode::None => write_generated_yaml_and_json(
&ado_pipeline,
&pipeline_static_db,
repo_root,
pipeline_file,
ado_post_process_yaml_cb,
),
}
}
/// Resolve a flow as a sequence of ADO YAML steps.
///
/// These steps can then be marshalled into a well-formed ADO pipeline yaml
/// using a separate ADO pipeline yaml builder
// pub(crate) so that internal debug CLI tooling can use it
pub(crate) fn resolve_flow_as_ado_yaml_steps(
seed_nodes: BTreeMap<NodeHandle, (bool, Vec<Box<[u8]>>)>,
resolved_patches: flowey_core::patch::ResolvedPatches,
external_read_vars: BTreeSet<String>,
platform: FlowPlatform,
arch: FlowArch,
job_idx: usize,
) -> anyhow::Result<(
Vec<serde_yaml::Value>,
BTreeMap<String, Vec<crate::cli::exec_snippet::SerializedRequest>>,
)> {
let mut output_steps = Vec::new();
let (mut output_graph, request_db, err_unreachable_nodes) =
crate::flow_resolver::stage1_dag::stage1_dag(
FlowBackend::Ado,
platform,
arch,
resolved_patches,
seed_nodes,
external_read_vars,
// TODO: support ADO agents with persistent storage
None,
)?;
if err_unreachable_nodes.is_some() {
anyhow::bail!("detected unreachable nodes")
}
let output_order = petgraph::algo::toposort(&output_graph, None)
.expect("runtime variables cannot introduce a DAG cycle");
let mut bash_commands = BashCommands::new_ado();
for idx in output_order.into_iter().rev() {
let OutputGraphEntry { node_handle, step } = output_graph[idx].1.take().unwrap();
let node_modpath = node_handle.modpath();
match step {
Step::Anchor { .. } => {}
Step::Rust {
idx,
can_merge,
label,
code: _,
} => {
output_steps.extend(bash_commands.push(
Some(label),
can_merge,
crate::cli::exec_snippet::construct_exec_snippet_cli(
"$(FLOWEY_BIN)",
node_modpath,
idx,
job_idx,
),
));
}
Step::AdoYaml {
label,
raw_yaml,
ado_to_rust,
rust_to_ado,
condvar,
code_idx,
code,
} => {
let var_db_cmd =
|var: &str, is_secret, update_from_stdin, is_raw_string, condvar| {
crate::cli::var_db::construct_var_db_cli(
"$(FLOWEY_BIN)",
job_idx,
var,
is_secret,
update_from_stdin,
None,
is_raw_string,
None,
condvar,
)
};
for (rust_var, ado_var, is_secret) in rust_to_ado {
let mut cmd = String::new();
// flowey considers all ADO vars to be typed as raw strings
let read_rust_var =
var_db_cmd(&rust_var, is_secret, false, true, condvar.as_deref());
writeln!(cmd, r#"rust_var=$({read_rust_var})"#)?;
writeln!(
cmd,
r###"printf "##vso[task.setvariable variable={ado_var};issecret={is_secret}]%s\n" "$rust_var""###
)?;
bash_commands.push_minor(cmd);
}
if !raw_yaml.is_empty() {
if let Some(condvar) = &condvar {
let mut cmd = String::new();
// guaranteed to be a bare bool `true`/`false`, hence
// is_raw_string = false
let read_condvar = var_db_cmd(condvar, false, false, false, None);
writeln!(cmd, r#"rust_var=$({read_condvar})"#)?;
writeln!(
cmd,
r###"echo "##vso[task.setvariable variable=FLOWEY_CONDITION;issecret=false]$rust_var""###
)?;
bash_commands.push_minor(cmd);
}
let raw_yaml = if code.lock().is_some() {
let inline_snippet = crate::cli::exec_snippet::construct_exec_snippet_cli(
"$(FLOWEY_BIN)",
node_modpath,
code_idx,
job_idx,
);
let post_process =
raw_yaml.replace("{{FLOWEY_INLINE_SCRIPT}}", &inline_snippet);
if raw_yaml == post_process {
return Err(anyhow::anyhow!("if using inlins-enippet, YAML must include {{{{FLOWEY_INLINE_SCRIPT}}}}").context(format!(
"invalid yaml in node {node_modpath}: {raw_yaml}"
)));
}
post_process
} else {
raw_yaml
};
let step: serde_yaml::Value = serde_yaml::from_str(&raw_yaml)
.context(format!("invalid yaml in node {node_modpath}: {raw_yaml}"))?;
let step = {
let mut step = step;
let seq = step
.as_sequence_mut()
.context("yaml snippet did not parse as a sequence")?;
if seq.len() != 1 {
anyhow::bail!("yaml snippet contained more than one sequence element")
}
let map = seq
.first_mut()
.unwrap()
.as_mapping_mut()
.context("yaml snippet did not parse as a map")?;
let existing = map.insert("displayName".into(), label.into());
if existing.is_some() {
anyhow::bail!("yaml snippet included `displayName`")
}
if condvar.is_some() {
let existing = map.insert(
"condition".into(),
"and(eq(variables['FLOWEY_CONDITION'], true), succeeded(), not(canceled()))".into(),
);
if existing.is_some() {
anyhow::bail!("yaml snippet included `condition`")
}
}
step
};
output_steps.extend(bash_commands.flush());
output_steps.push(step.as_sequence().unwrap().first().unwrap().clone());
}
for (ado_var, rust_var, is_secret) in ado_to_rust {
// flowey considers all ADO vars to be typed as raw strings
let write_rust_var =
var_db_cmd(&rust_var, is_secret, true, true, condvar.as_deref());
let cmd = format!(
r#"
{write_rust_var} <<'EOF'
$({ado_var})
EOF
"#
)
.trim()
.to_string();
bash_commands.push_minor(cmd);
}
}
Step::GitHubYaml { .. } => anyhow::bail!("GitHub YAML not supported in ADO"),
}
}
output_steps.extend(bash_commands.flush());
let request_db = request_db
.into_iter()
.map(|(node_handle, reqs)| {
(
node_handle.modpath().to_owned(),
reqs.into_iter()
.map(crate::cli::exec_snippet::SerializedRequest)
.collect(),
)
})
.collect();
Ok((output_steps, request_db))
}