Exploring the anatomy of Pipeline in Azure DevOps


LearnAzureDevOps-O5

Exploring the anatomy of Pipeline in Azure DevOps

A pipeline in Azure DevOps consists of multiple components that define its structure and behavior. Each component plays a role in orchestrating builds, tests, and deployments.

Here’s a detailed breakdown.

1. Name

The pipeline’s name is an identifier that appears in the Azure DevOps UI to help users distinguish between pipeline runs.

Usage

  • Define a name to provide context (e.g., include the branch, build number, or timestamp).

  • Can be set dynamically using variables.

    Example

  • $(Build.BuildId) is a system variable representing the unique build ID.

2. Trigger

Defines when the pipeline should start. Azure Pipelines supports multiple types of triggers.

Types

  • Continuous Integration (CI): Triggers on code changes.

  • Pull Request (PR): Triggers for PR validation.

  • Scheduled: Runs pipelines at specific times.

  • Manual: Starts pipelines only on demand.

    Example

    • CI Trigger: Runs on changes to main and develop.

    • PR Trigger: Runs for PRs targeting branches matching feature/.

3. Variables

Variables store values that can be reused throughout the pipeline.

They can be:

  • Static: Hardcoded values.

  • Dynamic: System or custom variables generated at runtime.

  • Secure: Stored securely in Azure DevOps as secrets.

    Example

    • $(buildConfiguration) is used in steps for configuration settings.

    • $(isProduction) can control conditional logic.

4. Job

A job is a collection of steps that execute on an agent. Pipelines can have multiple jobs running sequentially or in parallel.

Key Features

  • Display Name: Human-readable name for the job.

  • Dependencies: Specify dependencies between jobs.

  • Conditionals: Execute jobs conditionally based on variables.

    Example

5. Pool

The pool specifies the agent (VM) to execute the job.

Azure DevOps offers:

  • Microsoft-Hosted Agents: Preconfigured with tools.

  • Self-Hosted Agents: Custom-configured machines.

    Example

    • ubuntu-latest: A Microsoft-hosted agent running Ubuntu.

    • For a self-hosted agent:

6. Checkout

The checkout step determines the code repository and branch to be fetched for the pipeline.

Usage

  • Checkout the repository containing the pipeline definition.

  • Use custom repositories for additional resources.

    Example

    • self: Refers to the pipeline’s main repository.

    • clean: true: Ensures a clean slate by deleting untracked files.

7. Steps

Steps are the smallest executable units in a pipeline. They define specific tasks or commands.

Types

  1. Script Steps: Run shell or PowerShell commands.

  2. Task Steps: Use predefined tasks (e.g., build, test, deploy).

  3. Manual/Approval Steps: Require manual intervention (in deployment pipelines).

    Example: Script Step

    Example: Task Step

Putting It All Together

Here’s a complete YAML pipeline example for a .NET project:

Summary

ComponentDescription
NameIdentifies the pipeline run.
TriggerSpecifies conditions for pipeline execution (CI, PR, schedule, or manual).
VariablesStores reusable values (static, dynamic, or secure).
JobA collection of steps executed on a single agent.
PoolDefines the type of agent to run the pipeline (Microsoft-hosted or self-hosted).
CheckoutFetches source code for the pipeline.
StepsSmallest unit of execution (script or predefined tasks).

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.