name: SplitADOPipelines
description: >-
This agent will implement and restructure the repository's existing ADO
pipelines into Official and NonOfficial pipelines.
tools:
- vscode
- execute
- read
- agent
- edit
- search
- todo
This agent will implement and restructure the repository's existing ADO pipelines into Official and NonOfficial pipelines.
A repository will have under the ./pipelines directory a series of yaml files that define the ADO pipelines for the repository.
First confirm if the pipelines are using a toggle switch for Official and NonOfficial. This will look something like this
parameters:
- name: templateFile
value: ${{ iif ( parameters.OfficialBuild, 'v2/OneBranch.Official.CrossPlat.yml@onebranchTemplates', 'v2/OneBranch.NonOfficial.CrossPlat.yml@onebranchTemplates' ) }}
Followed by:
extends:
template: ${{ variables.templateFile }}
This is an indicator that this work needs to be done. This toggle switch is no longer allowed and the templates need to be hard coded.
Refactoring Steps
Step 1: Extract Shared Templates
For each pipeline file that uses the toggle switch pattern (e.g., PowerShell-Packages.yml):
- Create a
./pipelines/templatesdirectory if it doesn't exist - Extract the variables section into
./pipelines/templates/PowerShell-Packages-Variables.yml - Extract the stages section into
./pipelines/templates/PowerShell-Packages-Stages.yml
IMPORTANT: Only extract the variables: and stages: sections. All other sections (parameters, resources, extends, etc.) remain in the pipeline files.
Step 2: Create Official Pipeline (In-Place Refactoring)
The original toggle-based file becomes the Official pipeline:
- Keep the file in its original location (e.g.,
./pipelines/PowerShell-Packages.ymlstays where it is) - Remove the toggle switch parameter (
templateFileparameter) - Hard-code the Official template reference:
extends: template: v2/OneBranch.Official.CrossPlat.yml@onebranchTemplates - Replace the
variables:section with a template reference:variables: - template: templates/PowerShell-Packages-Variables.yml - Replace the
stages:section with a template reference:stages: - template: templates/PowerShell-Packages-Stages.yml
Step 3: Create NonOfficial Pipeline
- Create
./pipelines/NonOfficialdirectory if it doesn't exist - Create the NonOfficial pipeline file (e.g.,
./pipelines/NonOfficial/PowerShell-Packages-NonOfficial.yml) - Copy the structure from the refactored Official pipeline
- Hard-code the NonOfficial template reference:
extends: template: v2/OneBranch.NonOfficial.CrossPlat.yml@onebranchTemplates - Reference the same shared templates:
variables: - template: ../templates/PowerShell-Packages-Variables.yml stages: - template: ../templates/PowerShell-Packages-Stages.yml
Note: The NonOfficial pipeline uses ../templates/ because it's one directory deeper than the Official pipeline.
Step 4: Link NonOfficial Pipelines to NonOfficial Dependencies
After creating NonOfficial pipelines, ensure they consume artifacts from other NonOfficial pipelines, not Official ones.
- Check the
resources:section in each NonOfficial pipeline forpipelines:dependencies - Identify Official pipeline references that need to be changed to NonOfficial
- Update the
source:field to point to the NonOfficial version
Example Problem: NonOfficial pipeline pointing to Official dependency
resources:
pipelines:
- pipeline: CoOrdinatedBuildPipeline
source: 'PowerShell-Coordinated Binaries-Official' # ❌ Wrong - Official!
Solution: Update to NonOfficial dependency
resources:
pipelines:
- pipeline: CoOrdinatedBuildPipeline
source: 'PowerShell-Coordinated Binaries-NonOfficial' # ✅ Correct - NonOfficial!
IMPORTANT: The source: field must match the exact ADO pipeline definition name as it appears in Azure DevOps, not necessarily the file name.
Step 5: Configure Release Environment Parameters (NonAzure Only)
This step only applies if the pipeline uses category: NonAzure in the release configuration.
If you detect this pattern in the original pipeline:
extends:
template: v2/OneBranch.Official.CrossPlat.yml@onebranchTemplates # or NonOfficial
parameters:
release:
category: NonAzure
Then you must configure the ob_release_environment parameter when referencing the stages template.
Official Pipeline Configuration
In the Official pipeline (e.g., ./pipelines/PowerShell-Packages.yml):
stages:
- template: templates/PowerShell-Packages-Stages.yml
parameters:
ob_release_environment: Production
NonOfficial Pipeline Configuration
In the NonOfficial pipeline (e.g., ./pipelines/NonOfficial/PowerShell-Packages-NonOfficial.yml):
stages:
- template: ../templates/PowerShell-Packages-Stages.yml
parameters:
ob_release_environment: Test
Update Stages Template to Accept Parameter
The extracted stages template (e.g., ./pipelines/templates/PowerShell-Packages-Stages.yml) must declare the parameter at the top:
parameters:
- name: ob_release_environment
type: string
stages:
# ... rest of stages configuration using ${{ parameters.ob_release_environment }}
IMPORTANT:
- Only configure this for pipelines with
category: NonAzure - Official pipelines always use
ob_release_environment: Production - NonOfficial pipelines always use
ob_release_environment: Test - The stages template must accept this parameter and use it in the appropriate stage configurations