diff --git a/docs/template-markers.md b/docs/template-markers.md index bed3571a..20d48496 100644 --- a/docs/template-markers.md +++ b/docs/template-markers.md @@ -97,7 +97,64 @@ This distinction allows resources (like templates) to be available as pipeline r ## {{ agent_name }} -Should be replaced with the human-readable name from the front matter (e.g., "Daily Code Review"). This is used for display purposes like stage names. +Should be replaced with the human-readable name from the front matter +(e.g., `Daily Code Review`). The value is substituted **as-is**, with +no quoting or escaping — front-matter `name` values are free-form and +have not been validated against YAML scalar rules. + +> ⚠️ This marker is only safe inside a position that is **not parsed as +> YAML** (currently only `src/data/threat-analysis.md`, which is a +> markdown body). YAML positions inside the generated pipelines use +> [`{{ pipeline_name }}`](#-pipeline_name-) (top-level `name:` line) +> or [`{{ agent_display_name }}`](#-agent_display_name-) +> (`displayName:` positions). Both emit a fully-quoted-and-escaped +> double-quoted YAML scalar, so colons, embedded `"`, and other +> plain-scalar-unsafe characters in the agent name cannot break parsing. + +## {{ agent_display_name }} + +Should be replaced with the front-matter agent name, emitted as a +**YAML double-quoted scalar** with proper escaping for `\`, `"`, +`\n`, `\r`, `\t`, and other ASCII control characters. Used for +`displayName:` positions inside the generated YAML where the templates +previously hand-wrapped `{{ agent_name }}` in double quotes (which +silently corrupted any agent name containing an embedded `"`). + +For an agent named `My "special": agent`, this expands to: + +```yaml + displayName: "My \"special\": agent" +``` + +Used in `src/data/1es-base.yml` (1ES stage display name) and +`src/data/stage-base.yml` (stage-target stage display name). The marker +deliberately does **not** include the `-$(BuildID)` suffix that +[`{{ pipeline_name }}`](#-pipeline_name-) carries — stage labels are +static and don't need per-run uniqueness. + +## {{ pipeline_name }} + +Should be replaced with the front-matter agent name plus the +`-$(BuildID)` suffix, always emitted as a **YAML double-quoted scalar** +with the same escaping rules as `{{ agent_display_name }}`. Used only +for the top-level pipeline `name:` line, which in Azure DevOps is the +build-number format string. The `-$(BuildID)` suffix is the +[varying token ADO requires](https://learn.microsoft.com/azure/devops/pipelines/process/run-number) +to give each run a unique display name in the runs view; without it, +every run shows the same name. + +For an agent named `Daily safe-output smoke: noop`, this expands to: + +```yaml +name: "Daily safe-output smoke: noop-$(BuildID)" +``` + +`$(BuildID)` is an ADO macro and is expanded at queue time after YAML +parsing; `$` has no special meaning inside a YAML double-quoted scalar +so the macro passes through untouched. + +Used in `src/data/base.yml` and `src/data/1es-base.yml` only. The +job- and stage-level templates don't emit a top-level pipeline name. ## {{ engine_install_steps }} diff --git a/src/compile/common.rs b/src/compile/common.rs index 0888622b..6e5e80d7 100644 --- a/src/compile/common.rs +++ b/src/compile/common.rs @@ -996,6 +996,43 @@ pub fn sanitize_filename(name: &str) -> String { .join("-") } +/// Emit `s` as a YAML double-quoted scalar (always quoted, never plain). +/// +/// We always quote because the value is substituted into YAML positions +/// where colons and other plain-scalar-unsafe characters are common in +/// agent names (e.g. `"Daily safe-output smoke: noop"`). A bare scalar +/// like `name: Daily safe-output smoke: noop-$(BuildID)` is invalid YAML +/// because the second colon is interpreted as a mapping indicator. +/// +/// `$(...)` ADO macros pass through untouched — `$` has no special meaning +/// inside a YAML double-quoted scalar and ADO expands the macro at queue +/// time after YAML parsing. +/// +/// `reject_pipeline_injection` already strips newlines and template / +/// pipeline-command sequences from front-matter `name` values, so the +/// escape table only has to cover `\` and `"`. Tabs and ASCII control +/// characters are escaped too as a belt-and-braces measure. +pub fn yaml_double_quoted(s: &str) -> String { + let mut out = String::with_capacity(s.len() + 2); + out.push('"'); + for ch in s.chars() { + match ch { + '\\' => out.push_str("\\\\"), + '"' => out.push_str("\\\""), + '\n' => out.push_str("\\n"), + '\r' => out.push_str("\\r"), + '\t' => out.push_str("\\t"), + '\u{0085}' => out.push_str("\\x85"), + '\u{2028}' => out.push_str("\\u2028"), + '\u{2029}' => out.push_str("\\u2029"), + c if (c as u32) < 0x20 => out.push_str(&format!("\\x{:02x}", c as u32)), + c => out.push(c), + } + } + out.push('"'); + out +} + /// Default self-hosted pool for 1ES templates. pub const DEFAULT_ONEES_POOL: &str = "AZS-1ES-L-MMS-ubuntu-22.04"; /// Default Microsoft-hosted VM image for non-1ES templates. @@ -2856,6 +2893,17 @@ pub async fn compile_shared( let checkout_steps = generate_checkout_steps(&front_matter.checkout); let checkout_self = generate_checkout_self(); let agent_name = sanitize_filename(&front_matter.name); + // Top-level pipeline `name:` value (the ADO build-number format). + // Always quoted so colons / embedded `"` in the agent name can't + // break parsing. Includes `-$(BuildID)` because ADO needs a varying + // token in the build-number format — without one, every run shows + // the same name in the runs view. + let pipeline_name = + yaml_double_quoted(&format!("{}-$(BuildID)", front_matter.name)); + // Stage / job `displayName:` value. Always quoted (same escaping + // rationale as `pipeline_name`) but with NO BuildID suffix — stage + // labels are static and shouldn't carry per-run uniqueness suffixes. + let agent_display_name = yaml_double_quoted(&front_matter.name); // 3. Run extension validations for ext in extensions { @@ -3069,6 +3117,8 @@ pub async fn compile_shared( ("{{ checkout_repositories }}", &checkout_steps), ("{{ agent }}", &agent_name), ("{{ agent_name }}", &front_matter.name), + ("{{ agent_display_name }}", &agent_display_name), + ("{{ pipeline_name }}", &pipeline_name), ("{{ agent_description }}", &front_matter.description), ("{{ engine_run }}", &engine_run), ("{{ engine_run_detection }}", &engine_run_detection), @@ -3996,6 +4046,76 @@ mod tests { assert_eq!(sanitize_filename("test_case"), "test-case"); } + // ─── yaml_double_quoted ────────────────────────────────────────────────── + + #[test] + fn test_yaml_double_quoted_plain_string() { + assert_eq!(yaml_double_quoted("hello"), r#""hello""#); + } + + #[test] + fn test_yaml_double_quoted_string_with_colon_is_safe() { + // The bug this helper exists to fix: an agent name like + // "Daily safe-output smoke: noop" must not be emitted bare in the + // top-level pipeline `name:` line, where the second colon would + // be parsed as a YAML mapping indicator. + assert_eq!( + yaml_double_quoted("Daily safe-output smoke: noop-$(BuildID)"), + r#""Daily safe-output smoke: noop-$(BuildID)""# + ); + } + + #[test] + fn test_yaml_double_quoted_escapes_backslash() { + assert_eq!(yaml_double_quoted(r"a\b"), r#""a\\b""#); + } + + #[test] + fn test_yaml_double_quoted_escapes_double_quote() { + assert_eq!(yaml_double_quoted(r#"say "hi""#), r#""say \"hi\"""#); + } + + #[test] + fn test_yaml_double_quoted_escapes_whitespace_controls() { + assert_eq!(yaml_double_quoted("a\nb"), r#""a\nb""#); + assert_eq!(yaml_double_quoted("a\rb"), r#""a\rb""#); + assert_eq!(yaml_double_quoted("a\tb"), r#""a\tb""#); + } + + #[test] + fn test_yaml_double_quoted_escapes_yaml_line_separators() { + assert_eq!(yaml_double_quoted("a\u{0085}b"), r#""a\x85b""#); + assert_eq!(yaml_double_quoted("a\u{2028}b"), r#""a\u2028b""#); + assert_eq!(yaml_double_quoted("a\u{2029}b"), r#""a\u2029b""#); + } + + #[test] + fn test_yaml_double_quoted_escapes_other_control_chars() { + // Bell (0x07) is a low ASCII control char — should escape as \x07. + assert_eq!(yaml_double_quoted("a\u{0007}b"), r#""a\x07b""#); + } + + #[test] + fn test_yaml_double_quoted_passes_through_ado_macros() { + // $(BuildID), $(Build.SourcesDirectory) etc. have no special meaning + // inside a YAML double-quoted scalar; ADO expands them at queue time + // after YAML parsing. + assert_eq!( + yaml_double_quoted("$(Build.BuildId)/$(System.JobId)"), + r#""$(Build.BuildId)/$(System.JobId)""# + ); + } + + #[test] + fn test_yaml_double_quoted_passes_through_unicode() { + // Non-ASCII characters pass through as-is — YAML 1.2 supports UTF-8 + // in double-quoted scalars natively. + assert_eq!( + yaml_double_quoted("résumé — 你好"), + r#""résumé — 你好""# + ); + } + // ─── generate_pr_trigger ───────────────────────────────────────────────── #[test] diff --git a/src/data/1es-base.yml b/src/data/1es-base.yml index 7b7b2733..fc201ba6 100644 --- a/src/data/1es-base.yml +++ b/src/data/1es-base.yml @@ -2,7 +2,7 @@ # This template extends the 1ES Unofficial Pipeline Template with Copilot CLI, # AWF network isolation, and MCP Gateway — matching the standalone pipeline model. -name: {{ agent_name }}-$(BuildID) +name: {{ pipeline_name }} {{ parameters }} {{ schedule }} {{ pr_trigger }} @@ -34,7 +34,7 @@ extends: runPrerequisitesOnImage: false # Pool image has 1ES prerequisites preinstalled stages: - stage: AgentStage - displayName: "{{ agent_name }}" + displayName: {{ agent_display_name }} jobs: {{ setup_job }} diff --git a/src/data/base.yml b/src/data/base.yml index 508aa32e..b591d0f1 100644 --- a/src/data/base.yml +++ b/src/data/base.yml @@ -1,5 +1,5 @@ -name: {{ agent_name }}-$(BuildID) +name: {{ pipeline_name }} {{ parameters }} resources: repositories: diff --git a/src/data/stage-base.yml b/src/data/stage-base.yml index 289d3340..8de31813 100644 --- a/src/data/stage-base.yml +++ b/src/data/stage-base.yml @@ -3,7 +3,7 @@ stages: - stage: {{ stage_prefix }} - displayName: "{{ agent_name }}" + displayName: {{ agent_display_name }} jobs: {{ setup_job }} - job: {{ stage_prefix }}_Agent diff --git a/tests/compiler_tests.rs b/tests/compiler_tests.rs index f1b1470f..912b6ff5 100644 --- a/tests/compiler_tests.rs +++ b/tests/compiler_tests.rs @@ -69,7 +69,7 @@ fn assert_required_markers(content: &str) { "{{ checkout_repositories }}", "{{ allowed_domains }}", "{{ source_path }}", - "{{ agent_name }}", + "{{ pipeline_name }}", "{{ engine_run }}", "{{ compiler_version }}", "{{ integrity_check }}", @@ -3528,6 +3528,46 @@ fn test_1es_compiled_output_is_valid_yaml() { ); } +/// Names with embedded `"` and `:` must survive YAML escaping in both +/// the top-level `name:` line and any `displayName:` positions. +/// +/// Regression: until `{{ pipeline_name }}` was introduced both positions +/// used a bare `{{ agent_name }}` substitution which broke if the +/// front-matter name contained colons (`name: a: b` parsed as a YAML +/// mapping) or embedded double quotes (`displayName: "a "b" c"` parsed +/// as broken scalars). Now both positions go through `yaml_double_quoted` +/// via a single `{{ pipeline_name }}` marker. +#[test] +fn test_compiled_yaml_survives_tricky_agent_name_standalone() { + let compiled = compile_fixture("tricky-name-agent.md"); + assert_valid_yaml(&compiled, "tricky-name-agent.md"); + + // The top-level pipeline name must contain the escaped form of the + // embedded `"` (rendered as `\"`) AND retain the colon. + assert!( + compiled.contains(r#"name: "My \"special\": agent with quotes-$(BuildID)""#), + "standalone output should contain escaped pipeline name; got:\n{compiled}" + ); +} + +#[test] +fn test_compiled_yaml_survives_tricky_agent_name_1es() { + let compiled = compile_fixture("tricky-name-1es-agent.md"); + assert_valid_yaml(&compiled, "tricky-name-1es-agent.md"); + + // Top-level pipeline name carries the `-$(BuildID)` suffix because + // the ADO build-number format needs a varying token; the stage + // displayName does NOT carry the suffix (stage labels are static). + assert!( + compiled.contains(r#"name: "My \"special\": agent with quotes (1ES)-$(BuildID)""#), + "1ES output should contain escaped pipeline name; got:\n{compiled}" + ); + assert!( + compiled.contains(r#"displayName: "My \"special\": agent with quotes (1ES)""#), + "1ES output should contain escaped stage displayName; got:\n{compiled}" + ); +} + /// Test that the minimal standalone fixture produces valid YAML with correct structure #[test] fn test_standalone_minimal_compiled_output_is_valid_yaml() { diff --git a/tests/fixtures/tricky-name-1es-agent.md b/tests/fixtures/tricky-name-1es-agent.md new file mode 100644 index 00000000..bd7dfa0b --- /dev/null +++ b/tests/fixtures/tricky-name-1es-agent.md @@ -0,0 +1,15 @@ +--- +name: 'My "special": agent with quotes (1ES)' +description: "Fixture covering YAML escaping for embedded \" and : in name (1ES target)" +target: 1es +permissions: + read: my-read-arm-connection +--- + +## Tricky-Name Agent (1ES) + +Fixture used by `tests/compiler_tests.rs` to verify that agent names +containing embedded double quotes and colons survive YAML escaping for +the 1ES target, where the stage's `displayName:` is generated via +`{{ agent_display_name }}` and the top-level pipeline `name:` is +generated via `{{ pipeline_name }}`. diff --git a/tests/fixtures/tricky-name-agent.md b/tests/fixtures/tricky-name-agent.md new file mode 100644 index 00000000..b7651224 --- /dev/null +++ b/tests/fixtures/tricky-name-agent.md @@ -0,0 +1,14 @@ +--- +name: 'My "special": agent with quotes' +description: "Fixture covering YAML escaping for embedded \" and : in name" +target: standalone +permissions: + read: my-read-arm-connection +--- + +## Tricky-Name Agent + +Fixture used by `tests/compiler_tests.rs` to verify that agent names +containing embedded double quotes and colons survive YAML escaping in +both the top-level `name:` line (via `{{ pipeline_name }}`) and +any `displayName:` positions (via `{{ agent_display_name }}`). diff --git a/tests/safe-outputs/add-build-tag.lock.yml b/tests/safe-outputs/add-build-tag.lock.yml index b12cd4d3..84d1e87b 100644 --- a/tests/safe-outputs/add-build-tag.lock.yml +++ b/tests/safe-outputs/add-build-tag.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/add-build-tag.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/add-build-tag.md" version=0.29.0 -name: Daily safe-output smoke: add-build-tag-$(BuildID) +name: "Daily safe-output smoke: add-build-tag-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -510,7 +510,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -525,7 +525,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -758,7 +758,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -773,7 +773,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/add-pr-comment.lock.yml b/tests/safe-outputs/add-pr-comment.lock.yml index 02eaef28..711ed0db 100644 --- a/tests/safe-outputs/add-pr-comment.lock.yml +++ b/tests/safe-outputs/add-pr-comment.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/add-pr-comment.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/add-pr-comment.md" version=0.29.0 -name: Daily safe-output smoke: add-pr-comment-$(BuildID) +name: "Daily safe-output smoke: add-pr-comment-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -511,7 +511,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -526,7 +526,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -759,7 +759,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -774,7 +774,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/comment-on-work-item.lock.yml b/tests/safe-outputs/comment-on-work-item.lock.yml index dc1f6eb8..e2a192bf 100644 --- a/tests/safe-outputs/comment-on-work-item.lock.yml +++ b/tests/safe-outputs/comment-on-work-item.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/comment-on-work-item.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/comment-on-work-item.md" version=0.29.0 -name: Daily safe-output smoke: comment-on-work-item-$(BuildID) +name: "Daily safe-output smoke: comment-on-work-item-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -511,7 +511,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -526,7 +526,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -759,7 +759,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -774,7 +774,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/create-branch.lock.yml b/tests/safe-outputs/create-branch.lock.yml index 74b2e0f4..d1ad3efb 100644 --- a/tests/safe-outputs/create-branch.lock.yml +++ b/tests/safe-outputs/create-branch.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/create-branch.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/create-branch.md" version=0.29.0 -name: Daily safe-output smoke: create-branch-$(BuildID) +name: "Daily safe-output smoke: create-branch-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -510,7 +510,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -525,7 +525,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -758,7 +758,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -773,7 +773,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/create-git-tag.lock.yml b/tests/safe-outputs/create-git-tag.lock.yml index ffd75505..5a3ef31f 100644 --- a/tests/safe-outputs/create-git-tag.lock.yml +++ b/tests/safe-outputs/create-git-tag.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/create-git-tag.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/create-git-tag.md" version=0.29.0 -name: Daily safe-output smoke: create-git-tag-$(BuildID) +name: "Daily safe-output smoke: create-git-tag-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -510,7 +510,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -525,7 +525,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -758,7 +758,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -773,7 +773,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/create-pull-request.lock.yml b/tests/safe-outputs/create-pull-request.lock.yml index 6aa6064f..95954e5a 100644 --- a/tests/safe-outputs/create-pull-request.lock.yml +++ b/tests/safe-outputs/create-pull-request.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/create-pull-request.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/create-pull-request.md" version=0.29.0 -name: Daily safe-output smoke: create-pull-request-$(BuildID) +name: "Daily safe-output smoke: create-pull-request-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -513,7 +513,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -528,7 +528,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -761,7 +761,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -776,7 +776,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/create-wiki-page.lock.yml b/tests/safe-outputs/create-wiki-page.lock.yml index bbc93123..400b0d62 100644 --- a/tests/safe-outputs/create-wiki-page.lock.yml +++ b/tests/safe-outputs/create-wiki-page.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/create-wiki-page.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/create-wiki-page.md" version=0.29.0 -name: Daily safe-output smoke: create-wiki-page-$(BuildID) +name: "Daily safe-output smoke: create-wiki-page-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -510,7 +510,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -525,7 +525,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -758,7 +758,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -773,7 +773,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/create-work-item.lock.yml b/tests/safe-outputs/create-work-item.lock.yml index 41f38cd4..880b7ffa 100644 --- a/tests/safe-outputs/create-work-item.lock.yml +++ b/tests/safe-outputs/create-work-item.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/create-work-item.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/create-work-item.md" version=0.29.0 -name: Daily safe-output smoke: create-work-item-$(BuildID) +name: "Daily safe-output smoke: create-work-item-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -509,7 +509,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -524,7 +524,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -757,7 +757,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -772,7 +772,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/janitor.lock.yml b/tests/safe-outputs/janitor.lock.yml index f41b4d54..a36af55f 100644 --- a/tests/safe-outputs/janitor.lock.yml +++ b/tests/safe-outputs/janitor.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/janitor.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/janitor.md" version=0.29.0 -name: ado-aw smoke janitor-$(BuildID) +name: "ado-aw smoke janitor-$(BuildID)" resources: repositories: @@ -94,7 +94,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -109,7 +109,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -531,7 +531,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -546,7 +546,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -779,7 +779,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -794,7 +794,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/link-work-items.lock.yml b/tests/safe-outputs/link-work-items.lock.yml index 011cf478..f3caa8a3 100644 --- a/tests/safe-outputs/link-work-items.lock.yml +++ b/tests/safe-outputs/link-work-items.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/link-work-items.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/link-work-items.md" version=0.29.0 -name: Daily safe-output smoke: link-work-items-$(BuildID) +name: "Daily safe-output smoke: link-work-items-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -513,7 +513,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -528,7 +528,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -761,7 +761,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -776,7 +776,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/missing-data.lock.yml b/tests/safe-outputs/missing-data.lock.yml index eb269cab..4883f1a3 100644 --- a/tests/safe-outputs/missing-data.lock.yml +++ b/tests/safe-outputs/missing-data.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/missing-data.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/missing-data.md" version=0.29.0 -name: Daily safe-output smoke: missing-data-$(BuildID) +name: "Daily safe-output smoke: missing-data-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -510,7 +510,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -525,7 +525,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -758,7 +758,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -773,7 +773,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/missing-tool.lock.yml b/tests/safe-outputs/missing-tool.lock.yml index 3a285f36..51a990f2 100644 --- a/tests/safe-outputs/missing-tool.lock.yml +++ b/tests/safe-outputs/missing-tool.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/missing-tool.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/missing-tool.md" version=0.29.0 -name: Daily safe-output smoke: missing-tool-$(BuildID) +name: "Daily safe-output smoke: missing-tool-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -509,7 +509,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -524,7 +524,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -757,7 +757,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -772,7 +772,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/noop-target.lock.yml b/tests/safe-outputs/noop-target.lock.yml index 56b17883..05d56acc 100644 --- a/tests/safe-outputs/noop-target.lock.yml +++ b/tests/safe-outputs/noop-target.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/noop-target.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/noop-target.md" version=0.29.0 -name: ado-aw smoke noop target-$(BuildID) +name: "ado-aw smoke noop target-$(BuildID)" resources: repositories: @@ -60,7 +60,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -75,7 +75,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -496,7 +496,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -511,7 +511,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -731,7 +731,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -746,7 +746,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/noop.lock.yml b/tests/safe-outputs/noop.lock.yml index d7b6ae3a..58d41994 100644 --- a/tests/safe-outputs/noop.lock.yml +++ b/tests/safe-outputs/noop.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="tests/safe-outputs/noop.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/noop.md" version=0.29.0 -name: Daily safe-output smoke: noop-$(BuildID) +name: "Daily safe-output smoke: noop-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -508,7 +508,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -523,7 +523,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -756,7 +756,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -771,7 +771,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/queue-build.lock.yml b/tests/safe-outputs/queue-build.lock.yml index 2b3b1620..bab2d2df 100644 --- a/tests/safe-outputs/queue-build.lock.yml +++ b/tests/safe-outputs/queue-build.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/queue-build.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/queue-build.md" version=0.29.0 -name: Daily safe-output smoke: queue-build-$(BuildID) +name: "Daily safe-output smoke: queue-build-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -512,7 +512,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -527,7 +527,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -760,7 +760,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -775,7 +775,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/reply-to-pr-comment.lock.yml b/tests/safe-outputs/reply-to-pr-comment.lock.yml index 73723bd8..385bdcb9 100644 --- a/tests/safe-outputs/reply-to-pr-comment.lock.yml +++ b/tests/safe-outputs/reply-to-pr-comment.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/reply-to-pr-comment.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/reply-to-pr-comment.md" version=0.29.0 -name: Daily safe-output smoke: reply-to-pr-comment-$(BuildID) +name: "Daily safe-output smoke: reply-to-pr-comment-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -513,7 +513,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -528,7 +528,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -761,7 +761,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -776,7 +776,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/report-incomplete.lock.yml b/tests/safe-outputs/report-incomplete.lock.yml index 213ccc0f..831a3b7b 100644 --- a/tests/safe-outputs/report-incomplete.lock.yml +++ b/tests/safe-outputs/report-incomplete.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/report-incomplete.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/report-incomplete.md" version=0.29.0 -name: Daily safe-output smoke: report-incomplete-$(BuildID) +name: "Daily safe-output smoke: report-incomplete-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -509,7 +509,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -524,7 +524,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -757,7 +757,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -772,7 +772,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/resolve-pr-thread.lock.yml b/tests/safe-outputs/resolve-pr-thread.lock.yml index c4c6bedb..fe2e49af 100644 --- a/tests/safe-outputs/resolve-pr-thread.lock.yml +++ b/tests/safe-outputs/resolve-pr-thread.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/resolve-pr-thread.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/resolve-pr-thread.md" version=0.29.0 -name: Daily safe-output smoke: resolve-pr-thread-$(BuildID) +name: "Daily safe-output smoke: resolve-pr-thread-$(BuildID)" resources: repositories: @@ -88,7 +88,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -103,7 +103,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -529,7 +529,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -544,7 +544,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -777,7 +777,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -792,7 +792,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/smoke-failure-reporter.lock.yml b/tests/safe-outputs/smoke-failure-reporter.lock.yml index b4dfbfc8..3b7b5238 100644 --- a/tests/safe-outputs/smoke-failure-reporter.lock.yml +++ b/tests/safe-outputs/smoke-failure-reporter.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/smoke-failure-reporter.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/smoke-failure-reporter.md" version=0.29.0 -name: ado-aw smoke failure reporter-$(BuildID) +name: "ado-aw smoke failure reporter-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -544,7 +544,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -559,7 +559,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -792,7 +792,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -807,7 +807,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/submit-pr-review.lock.yml b/tests/safe-outputs/submit-pr-review.lock.yml index ed15fedb..08015850 100644 --- a/tests/safe-outputs/submit-pr-review.lock.yml +++ b/tests/safe-outputs/submit-pr-review.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/submit-pr-review.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/submit-pr-review.md" version=0.29.0 -name: Daily safe-output smoke: submit-pr-review-$(BuildID) +name: "Daily safe-output smoke: submit-pr-review-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -512,7 +512,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -527,7 +527,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -760,7 +760,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -775,7 +775,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/update-pr.lock.yml b/tests/safe-outputs/update-pr.lock.yml index 61bee294..33df9ad0 100644 --- a/tests/safe-outputs/update-pr.lock.yml +++ b/tests/safe-outputs/update-pr.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/update-pr.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/update-pr.md" version=0.29.0 -name: Daily safe-output smoke: update-pr-$(BuildID) +name: "Daily safe-output smoke: update-pr-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -514,7 +514,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -529,7 +529,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -762,7 +762,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -777,7 +777,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/update-wiki-page.lock.yml b/tests/safe-outputs/update-wiki-page.lock.yml index e90f9fd3..57aba76e 100644 --- a/tests/safe-outputs/update-wiki-page.lock.yml +++ b/tests/safe-outputs/update-wiki-page.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/update-wiki-page.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/update-wiki-page.md" version=0.29.0 -name: Daily safe-output smoke: update-wiki-page-$(BuildID) +name: "Daily safe-output smoke: update-wiki-page-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -511,7 +511,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -526,7 +526,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -759,7 +759,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -774,7 +774,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/update-work-item.lock.yml b/tests/safe-outputs/update-work-item.lock.yml index ef6fa34d..1380057c 100644 --- a/tests/safe-outputs/update-work-item.lock.yml +++ b/tests/safe-outputs/update-work-item.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/update-work-item.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/update-work-item.md" version=0.29.0 -name: Daily safe-output smoke: update-work-item-$(BuildID) +name: "Daily safe-output smoke: update-work-item-$(BuildID)" resources: repositories: @@ -72,7 +72,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -87,7 +87,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -511,7 +511,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -526,7 +526,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -759,7 +759,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -774,7 +774,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/upload-build-attachment.lock.yml b/tests/safe-outputs/upload-build-attachment.lock.yml index 23726864..8b0d0c7f 100644 --- a/tests/safe-outputs/upload-build-attachment.lock.yml +++ b/tests/safe-outputs/upload-build-attachment.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/upload-build-attachment.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/upload-build-attachment.md" version=0.29.0 -name: Daily safe-output smoke: upload-build-attachment-$(BuildID) +name: "Daily safe-output smoke: upload-build-attachment-$(BuildID)" resources: repositories: @@ -85,7 +85,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -100,7 +100,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -524,7 +524,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -539,7 +539,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -772,7 +772,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -787,7 +787,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/upload-pipeline-artifact.lock.yml b/tests/safe-outputs/upload-pipeline-artifact.lock.yml index 8429b4c5..cf3b350e 100644 --- a/tests/safe-outputs/upload-pipeline-artifact.lock.yml +++ b/tests/safe-outputs/upload-pipeline-artifact.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/upload-pipeline-artifact.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/upload-pipeline-artifact.md" version=0.29.0 -name: Daily safe-output smoke: upload-pipeline-artifact-$(BuildID) +name: "Daily safe-output smoke: upload-pipeline-artifact-$(BuildID)" resources: repositories: @@ -85,7 +85,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -100,7 +100,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -524,7 +524,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -539,7 +539,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -772,7 +772,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -787,7 +787,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler" diff --git a/tests/safe-outputs/upload-workitem-attachment.lock.yml b/tests/safe-outputs/upload-workitem-attachment.lock.yml index ba117243..2f1100fe 100644 --- a/tests/safe-outputs/upload-workitem-attachment.lock.yml +++ b/tests/safe-outputs/upload-workitem-attachment.lock.yml @@ -1,7 +1,7 @@ # This file is auto-generated by ado-aw. Do not edit manually. -# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/upload-workitem-attachment.md" version=0.28.0 +# @ado-aw source="C:/software/ado-aw/tests/safe-outputs/upload-workitem-attachment.md" version=0.29.0 -name: Daily safe-output smoke: upload-workitem-attachment-$(BuildID) +name: "Daily safe-output smoke: upload-workitem-attachment-$(BuildID)" resources: repositories: @@ -85,7 +85,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -100,7 +100,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | AGENTIC_PIPELINES_PATH="$(Pipeline.Workspace)/agentic-pipeline-compiler/ado-aw" @@ -527,7 +527,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -542,7 +542,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - task: DockerInstaller@0 displayName: "Install Docker" @@ -775,7 +775,7 @@ jobs: - bash: | set -eo pipefail - COMPILER_VERSION="0.28.0" + COMPILER_VERSION="0.29.0" DOWNLOAD_DIR="$(Pipeline.Workspace)/agentic-pipeline-compiler" DOWNLOAD_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/ado-aw-linux-x64" CHECKSUM_URL="https://github.com/githubnext/ado-aw/releases/download/v${COMPILER_VERSION}/checksums.txt" @@ -790,7 +790,7 @@ jobs: grep "ado-aw-linux-x64" checksums.txt | sha256sum -c - mv ado-aw-linux-x64 ado-aw chmod +x ado-aw - displayName: "Download agentic pipeline compiler (v0.28.0)" + displayName: "Download agentic pipeline compiler (v0.29.0)" - bash: | ls -la "$(Pipeline.Workspace)/agentic-pipeline-compiler"