Skip to content
Pinter Computing

Knowledge Base for IT Professionals, Teachers, and Astronauts

Pinter Computing

Knowledge Base for IT Professionals, Teachers, and Astronauts

  • Home
  • Programming
  • DevOps
  • Project Management
  • Software and Hardware
  • Miscellaneous
  • Egyebek
  • About
  • Experience
  • Education
  • Contact
  • Home
  • Programming
  • DevOps
  • Project Management
  • Software and Hardware
  • Miscellaneous
  • Egyebek
  • About
  • Experience
  • Education
  • Contact
Close

Search

Knowledge Base

Microsoft Azure Pipelines

By Laszlo Pinter
November 15, 2025 2 Min Read
0

Azure pipelines support the CI/CD (Continuous Integration, Continuous Deployment), the fully automated Continuous Delivery process.

Agents, either hosted by Microsoft, or self-hosted on the client’s infrastructure, execute the yaml scripts.

Steps

The smallest unit of work in the Azure Pipeline. Each step is one action in a job. A Step can be a Script or a Task.

Script

A Script is a command written in a scripting language to be executed as a step of a job.

Running a Bash Script

steps:
- script: echo "Hello, World!"
  displayName: 'Script to say Hello'
Task

A Task is a packaged script that can be used as a step within a job:

  • Built-in tasks from Azure Pipeline
  • Custom scripts written in PowerShell, Bash, Python or other languages
  • Third-party tasks from the Azure DevOps Marketplace

Running a Task, to execute an Azure CLI command with attributes

steps:
- task: AzureCLI@2
  displayName: 'Run Azure CLI Command'
  inputs:
    azureSubscription: 'MyAzureSubscription' # Service connection to Azure
    scriptType: 'bash'                     # Specify the script type (bash or ps)
    scriptLocation: 'inlineScript'          # Define the script location
    inlineScript: |                         # Start the inline script
      echo "Listing all resources in the resource group..."
      az resource list --resource-group MyResourceGroup

Jobs

The job is a single phase of the pipeline executing multiple steps. Jobs can run in parallel or in sequence if those depend on each other. It has its own context and workspace, so variables and files created in one job are kept separate from each other. This allows the easier troubleshooting of the process. Typical steps are:

  • Building code
  • Running tests

Stages

Stages hold related jobs together. It can represent

  • Environments, like
    • Development,
    • QA,
    • Production,
  • or Related jobs, like
    • Build,
    • Test,
    • Deploy.

Triggers

Triggers tells the pipeline to run. It can be based on

  • Events, like
    • A commit to a repository or
    • A pull request
  • or Schedules
    • To run at specific times, like end of the day.

Approval

Gatekeeper before the stage can proceed. The pipeline execution pauses until the approval arrives. It can be

  • Manual (like human approval is required before deployment to Production)
  • Automatic (like only during business hours, or when automated tests are passed)
Author

Laszlo Pinter

Follow Me
Other Articles
Previous

DevOps Workflow

Next

Installing the Windows Subsystem for Linux (WSL)

No Comment! Be the first one.

Leave a Reply Cancel reply

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

Search

Last Changes

  • Japan travel tips June 22, 2026
  • Argument of type '(number | null)[]' is not assignable to parameter of type '(err: Error, result: QueryResult) => void' June 20, 2026
  • Cities: Skylines II Developer Mode June 20, 2026
  • How to stop the rain and snow in Cities: Skylines II June 20, 2026
  • 'CSII_MANAGEDPATH' has incorrect path(s) when building Cities: Skylines II mod June 20, 2026

Tags

.NET .NETcore 3Dprinting ASP.NET Core AutodeskInventor AWS C# Chef cloud DevOps Docker EntityFramework Games Git Go iOS iPad iPhone iPod Java Kubernetes Linux MacOSX MSSQL MVC Node.js Packer PowerShell Python RDS RightScale Ruby security Splunk TeamCity Terraform TestKitchen Tomcat Ubuntu Vagrant VirtualBox VisualStudio Windows WordPress Xcode

Recent Comments

  • Zengei László on MyHeritage családfa exportálása és küldése emailben
  • Raúl Castillo on DynDns update error
  • MICHAEL on Windows Media Player 12 cannot find the album information
  • Nargis on Configure Epson ET-3850 scanning on Windows 11
  • Venczelné Zemen Erika on Delta S2302 termosztát programozása

–

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
Copyright 2026 — Pinter Computing. All rights reserved.