Configuring your Azure DevOps Pipelines in a YAML file


LearnAzureDevOps-O5

Configuring your Azure DevOps Pipelines in a YAML file

To configure Azure Pipelines in a YAML file that exists alongside your code, follow these steps:

Steps to Configure Pipelines in a YAML File.

1. Create a YAML File

  1. Locate the Source Code Repository: Open your source control repository (e.g., GitHub, Azure Repos, Bitbucket).

  2. Add a YAML Pipeline File: Create a .yml file in the .github/workflows/ directory for GitHub or directly in the .azure-pipelines/ directory for Azure Repos.

    Example path for Azure Repos: /.azure-pipelines/pipeline.yml

  3. Define the Pipeline: Use YAML syntax to define your pipeline as shown below.

2. Structure of YAML Pipeline

A simple YAML pipeline includes:

  1. Pipeline: The overall pipeline definition.

  2. Stages: Different phases like Build, Test, Deploy.

  3. Jobs: Individual tasks within a stage.

  4. Steps: Individual actions executed within a job.

3. Example YAML Pipeline

4. Place the YAML File

  1. For GitHub, place the YAML file in .github/workflows/.

Example: /.github/workflows/pipeline.yml

  1. For Azure Repos, place the YAML file in .azure-pipelines/ directory.

Example: /.azure-pipelines/pipeline.yml

  1. Push the YAML file to Source Control: Commit and push the YAML file alongside your code.

  2. Trigger the Pipeline: Azure Pipelines or GitHub Actions will automatically pick up the YAML file in the specified directory.

Benefits of Using YAML Pipelines Alongside Code

  1. Version Control: YAML files are versioned alongside the code, providing traceability and change management.

  2. Consistency: Pipelines are defined as code, ensuring consistency across environments.

  3. Portability: YAML files can be reused across different projects and repositories.

Summary

By configuring Azure Pipelines in a YAML file that exists alongside your code, you maintain a clean separation of pipeline configurations and application code, ensuring scalability and automation.

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.