{"id":19638,"date":"2021-08-30T10:00:00","date_gmt":"2021-08-30T04:30:00","guid":{"rendered":"https:\/\/www.testpreptraining.com\/blog\/?p=19638"},"modified":"2021-08-28T17:30:18","modified_gmt":"2021-08-28T12:00:18","slug":"an-introduction-to-azure-pipelines","status":"publish","type":"post","link":"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/","title":{"rendered":"An introduction to Azure Pipelines"},"content":{"rendered":"\n<p>Microsoft Azure has made it easy for getting cloud-hosted pipelines for Linux, macOS, and Windows as well as for creating web, desktop, and mobile applications. That is to say, with providing Azure Pipelines service, it is now simple to deploy to any cloud or on\u2011premises. This can continuously create, test, and deploy to any platform and cloud. Azure Pipelines is now used by many top organizations for providing solutions.<\/p>\n\n\n\n<p><em>However, to learn why this service is in demand, let\u2019s check out the overview, uses, features, and other areas to get started with Azure Pipeline.<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What are Azure Pipelines?<\/strong><\/h3>\n\n\n\n<p><a href=\"https:\/\/docs.microsoft.com\/en-in\/azure\/devops\/pipelines\/get-started\/what-is-azure-pipelines?view=azure-devops\" target=\"_blank\" rel=\"noreferrer noopener\">Azure Pipelines<\/a> have the ability for creating and testing code projects automatically for making them available to others. This is compatible with any language or project type. Moreover, Azure Pipelines integrates continuous integration (CI) and continuous delivery (CD) for testing, building code, and then delivering it to any target.<\/p>\n\n\n\n<p><strong>Continuous Integration (CI):<\/strong><\/p>\n\n\n\n<p>This can be considered as the practice used by development teams for automating merging and testing code. However, implementing CI helps in catching bugs early in the development cycle in order to make them less expensive to fix. Further, automated tests execute as part of the CI process for ensuring quality. And, artifacts are created from CI systems and fed for releasing processes to drive frequent deployments.&nbsp;<\/p>\n\n\n\n<p><strong>Continuous Delivery (CD):<\/strong><\/p>\n\n\n\n<p>This can be referred to as a process by which code is created, tested, and deployed to one or more test and production environments. However, deploying and testing in multiple environments expands the quality. And, CI systems create deployable artifacts, including infrastructure and apps. Further, automated release processes use these artifacts for releasing new versions and fixes to existing systems.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Uses of Azure Pipeline<\/strong><\/h6>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, using Azure Pipelines, you can create, test and deploy Node.js, PHP, Ruby, C\/C++, .NET, Python, Java, Android, and iOS apps. Moreover, you can run in parallel on Linux, macOS, and Windows.<\/li><li>Secondly, this service makes it easy to create and push images to container registries like Docker Hub and Azure Container Registry. Thirdly, using this you can explore and implement a large range of community-built build, test, and deployment tasks with having the support of hundreds of extensions from Slack to SonarCloud.<\/li><li>Fourthly, this can implement continuous delivery (CD) of your software to any cloud. This can be Azure, AWS, and GCP. So, you can easily visualize deployment to any number of interdependent stages.<\/li><li>Azure Pipeline provides quick continuous integration\/continuous delivery (CI\/CD) pipelines for open source projects.&nbsp;<\/li><li>Lastly, this helps in easily build chaining and multi-phased builds with have the support for YAML, test integration, release gates, reporting, and more.<\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>What are the features of the Azure Pipeline?<\/strong><\/h4>\n\n\n\n<p>Some of the top-rated <a href=\"https:\/\/azure.microsoft.com\/en-in\/services\/devops\/pipelines\/\" target=\"_blank\" rel=\"noreferrer noopener\">features of Azure Pipelines<\/a> are:<\/p>\n\n\n\n<p><strong>1. Linux, macOS, and Windows agent<\/strong><\/p>\n\n\n\n<p>In Azure Pipelines, you can easily simplify the management of hardware and VMs using Microsoft cloud-hosted agents. Moreover, it provides complete CI\/CD pipeline support for every major platform and tool.<\/p>\n\n\n\n<p><strong>2. Powerful workflows with native container support<\/strong><\/p>\n\n\n\n<p>In this, you will get lightning-fast builds with parallel jobs and test execution. Moreover, you can make use of container jobs for creating consistent builds with the required tools. Further, you can also build new containers with ease and push them to any registry.<\/p>\n\n\n\n<p><strong>3. Flexible deployments to Kubernetes, serverless or VMs<\/strong><\/p>\n\n\n\n<p>In Azure Pipelines, you can easily deploy to Kubernetes, VMs, Azure Functions, Azure Web Apps, or any cloud. Moreover, you can create a deployment strategy that is right for you and ensures quality at every step using stages, gates, and approvals. And, you can also deploy from other CI systems such as Jenkins.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Getting started with Azure Pipelines<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>1. Defining pipelines using YAML syntax<\/strong><\/h4>\n\n\n\n<p>We can specify the <a href=\"https:\/\/docs.microsoft.com\/en-in\/azure\/devops\/pipelines\/get-started\/pipelines-get-started?view=azure-devops\" target=\"_blank\" rel=\"noreferrer noopener\">pipeline<\/a> in a YAML file called azure-pipelines.yml using the rest of your app.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/docs.microsoft.com\/en-in\/azure\/devops\/pipelines\/media\/pipelines-image-yaml.png?view=azure-devops\" alt=\"Pipelines YAML intro image\"\/><figcaption><strong>Image Source: Microsoft<\/strong><\/figcaption><\/figure><\/div>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, the pipeline is versioned with your code and follows the same branching structure. However, you get validation of your modifications through code reviews in pull requests and branch build policies.<\/li><li>Secondly, each branch you use can modify the building policy by changing the azure-pipelines.yml file.<\/li><li>Lastly, modification to the build process might cause a break or result in an unexpected outcome. However, you can more easily identify the issue because the change is in version control with the rest of your codebase.<\/li><\/ul>\n\n\n\n<p><strong>Follow the below steps:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, configure Azure Pipelines for using your Git repo.<\/li><li>Secondly, edit your azure-pipelines.yml file for defining your build.<\/li><li>Lastly, push your code to your version control repository. This will check out the default trigger for building, deploying, and then monitoring the results.<\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>2. Defining pipelines using the Classic interface<\/strong><\/h4>\n\n\n\n<p>In this, we will <a href=\"https:\/\/docs.microsoft.com\/en-in\/azure\/devops\/pipelines\/get-started\/pipelines-get-started?view=azure-devops\" target=\"_blank\" rel=\"noreferrer noopener\">build and configure pipelines<\/a> in the Azure DevOps web portal with the Classic user interface editor. However, specify a build pipeline for building, testing code, and then publish artifacts. And, also define a release pipeline for consuming and deploying those artifacts to deployment targets.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/docs.microsoft.com\/en-in\/azure\/devops\/pipelines\/media\/pipelines-image-designer.png?view=azure-devops\" alt=\"Azure Pipelines designer intro image\"\/><figcaption><strong>Image Source: Microsoft<\/strong><\/figcaption><\/figure><\/div>\n\n\n\n<p><strong>Follow the below steps:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, configure Azure Pipelines for using your Git repo.<\/li><li>Secondly, use the Azure Pipelines classic editor for creating and configuring your build and release pipelines.<\/li><li>Lastly, push your code to your version control repository. This triggers your pipeline and runs tasks like creating or testing code.<\/li><\/ul>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https:\/\/www.testpreptraining.ai\/data-engineering-on-microsoft-azure-dp-203-practice-exam\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" src=\"https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/06\/dp-203.png\" alt=\"Micrrrosoft dp-203 exam\"\/><\/a><\/figure><\/div>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>3. Create your first pipeline<\/strong><\/h4>\n\n\n\n<p>In this, we will use <a href=\"https:\/\/docs.microsoft.com\/en-in\/azure\/devops\/pipelines\/create-first-pipeline?view=azure-devops&amp;tabs=java%2Ctfs-2018-2%2Cbrowser\" target=\"_blank\" rel=\"noreferrer noopener\">Azure Pipelines<\/a> for building a GitHub repository. As an example, we will be creating a pipeline using Java.<\/p>\n\n\n\n<p><strong>Java<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, sign in to your Azure DevOps organization. Then, navigate to your project.<\/li><li>Secondly, navigate to the Pipelines page in your project. Then, select the action for creating a new pipeline.<\/li><li>Thirdly, go through the steps of the wizard by first choosing GitHub as the location of your source code.<\/li><li>Now, you may be redirected to GitHub for signing in. Here, enter your GitHub credentials.<\/li><li>Then, select your desired sample app repository when the list of repositories appears.<\/li><li>After that, Azure Pipelines will examine your repository and recommend a Maven pipeline template. Just, select Save and run. And, then, choose to Commit directly to the main branch, and select Save and run again.<\/li><li>Lastly, a new run is started.&nbsp;<\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>4. Adding a status badge to your repository<\/strong><\/h4>\n\n\n\n<p>Developers often display their code quality high by showing a status badge in their repo.<\/p>\n\n\n\n<p><em>For copying the status badge to your clipboard:<\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, go to the Pipelines page to view the list of pipelines in Azure Pipelines. Then, choose the pipeline you created in the previous section.<\/li><li>Secondly, select the Status badge in the context menu for the pipeline.<\/li><li>Lastly, from the status badge panel copy the sample Markdown.<\/li><\/ul>\n\n\n\n<p><em>Now with the badge Markdown in your clipboard, follow the below steps in GitHub:<\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, go to the list of files and select Readme.md. Then, for editing, choose the pencil icon.<\/li><li>Secondly, at the beginning of the file paste the status badge Markdown.<\/li><li>After that, commit the modifications to the master branch.<\/li><li>Lastly, observe that the status badge appears in the description of your repository.<\/li><\/ul>\n\n\n\n<p><em>For configuring anonymous access to badges for private projects:<\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, navigate to Project Settings<\/li><li>Then, open the Settings tab under Pipelines<\/li><li>Lastly, under General toggle the Disable anonymous access to badges slider.<\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>5. Managing your pipeline with Azure CLI<\/strong><\/h4>\n\n\n\n<p>Using the pipelines commands provided below, you can manage the pipelines in your organization:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, az pipelines run: Running an existing pipeline<\/li><li>Then, az pipelines update: Updating an existing pipeline<\/li><li>Lastly, az pipelines show: Displaying the details of an existing pipeline<\/li><\/ul>\n\n\n\n<p>However, these commands need either the name or ID of the pipeline you want to manage. And, use the az pipelines list command for getting the ID of a pipeline.<\/p>\n\n\n\n<p><strong>1. Running a pipeline<\/strong><\/p>\n\n\n\n<p>Use the az pipelines run command for queuing (run) an existing pipeline.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" width=\"704\" height=\"191\" src=\"https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/1-6.png\" alt=\"run pipeline\" class=\"wp-image-19640\" srcset=\"https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/1-6.png 704w, https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/1-6-300x81.png 300w\" sizes=\"(max-width: 704px) 100vw, 704px\" \/><figcaption><strong>Image Source: Microsoft<\/strong><\/figcaption><\/figure><\/div>\n\n\n\n<p><strong>For example:<\/strong><\/p>\n\n\n\n<p>The command runs the pipeline named myGithubname.pipelines-java in the branch pipeline.<\/p>\n\n\n\n<p><strong>Azure CLI<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>az pipelines run --name myGithubname.pipelines-java --branch pipeline --output table\n\nRun ID    Number      Status      Result    Pipeline ID    Pipeline Name                Source Branch    Queued Time               Reason\n--------  ----------  ----------  --------  -------------  --------------------------- ---------------  --------------------------  --------\n123       20200123.2  notStarted            12             myGithubname.pipelines-java  pipeline           2020-01-23 11:55:56.633450  manual<\/code><\/pre>\n\n\n\n<p><strong>2. Updating a pipeline<\/strong><\/p>\n\n\n\n<p>Use the az pipelines update command for updating an existing pipeline.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" width=\"631\" height=\"203\" src=\"https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/1-7.png\" alt=\"update\" class=\"wp-image-19641\" srcset=\"https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/1-7.png 631w, https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/1-7-300x97.png 300w\" sizes=\"(max-width: 631px) 100vw, 631px\" \/><figcaption><strong>Image Source: Microsoft<\/strong><\/figcaption><\/figure><\/div>\n\n\n\n<p><strong>For example:<\/strong><\/p>\n\n\n\n<p>The command updates the pipeline with the ID of 12 with a new name.<\/p>\n\n\n\n<p><strong>Azure CLI<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>az pipelines update --id 12 --description \"rename pipeline\" --new-name updatedname.pipelines-java --output table\n\nID    Name                        Status    Default Queue\n----  --------------------------  --------  ------------------\n12    updatedname.pipelines-java  enabled   Hosted Ubuntu 1604<\/code><\/pre>\n\n\n\n<p><strong>3. Displaying pipeline<\/strong><\/p>\n\n\n\n<p>Use the az pipelines show command for viewing the details of an existing pipeline.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" width=\"479\" height=\"145\" src=\"https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/1-8.png\" alt=\"display azure pipelines\" class=\"wp-image-19642\" srcset=\"https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/1-8.png 479w, https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/1-8-300x91.png 300w\" sizes=\"(max-width: 479px) 100vw, 479px\" \/><figcaption><strong>Image Source: Microsoft<\/strong><\/figcaption><\/figure><\/div>\n\n\n\n<p><strong>For example:<\/strong><\/p>\n\n\n\n<p>The command displays the details of the pipeline with the ID of 12.<\/p>\n\n\n\n<p><strong>Azure CLI<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>az pipelines show --id 12 --output table\n\nID    Name                        Status    Default Queue\n----  --------------------------  --------  ------------------\n12    updatedname.pipelines-java  enabled   Hosted Ubuntu 1604<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Azure Pipelines Pricing<\/strong><\/h4>\n\n\n\n<p>The pricing for Azure Pipelines provides one free Microsoft-hosted CI\/CD and one free Self-Hosted CI\/CD. In which for 1 Microsoft-hosted job, you will get 1,800 minutes per month for CI\/CD and one self-hosted job with unlimited minutes per month. And, you have to pay \u20b92,881.82 per extra Microsoft-hosted CI\/CD parallel job and \u20b91,080.68 per extra self-hosted CI\/CD parallel job with unlimited minutes. <em><a href=\"https:\/\/azure.microsoft.com\/en-in\/pricing\/details\/devops\/azure-devops-services\/\" target=\"_blank\" rel=\"noreferrer noopener\">Click here for more pricing details.<\/a><\/em><\/p>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>Summarizing:&nbsp;<\/strong><\/h6>\n\n\n\n<p>To have a quick revision, let\u2019s summarize the major qualities of Azure Pipelines that makes it worth are:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Firstly, this can operate with any language or platform<\/li><li>Secondly, you can deploy to different types of targets at the same time.<\/li><li>Thirdly, you will get the option to combine with Azure deployments. And, it builds on Windows, Linux, or Mac machines<\/li><li>Lastly, you can easily integrate with GitHub and also works with open-source projects.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Final Words<\/strong><\/h3>\n\n\n\n<p>Above we have understood the concepts, features, and steps to get started with Azure Pipelines. This service comes with CI and CD to ensure consistent and quality code. Moreover, it offers a fast, easy, and safe way for automating building your projects and making them available to users. So, if you have interest and want to get started with this, just go through the above provide details and starting learning by taking help from Microsoft documentation as a reference.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https:\/\/www.testpreptraining.ai\/data-engineering-on-microsoft-azure-dp-203-free-practice-test\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" src=\"https:\/\/www.testpreptraining.ai\/tutorial\/wp-content\/uploads\/2021\/03\/Exam-DP-203-Data-Engineering-on-Microsoft-Azure-practicee-tests.png\" alt=\"Exam DP-203 Data Engineering on Microsoft Azure practice tests\"\/><\/a><\/figure><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Microsoft Azure has made it easy for getting cloud-hosted pipelines for Linux, macOS, and Windows as well as for creating web, desktop, and mobile applications. That is to say, with providing Azure Pipelines service, it is now simple to deploy to any cloud or on\u2011premises. This can continuously create, test, and deploy to any platform&#8230;<\/p>\n","protected":false},"author":2,"featured_media":19639,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[131],"tags":[2631,3282,3284,3286,3285,3283,3287],"class_list":["post-19638","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-microsoft-azure","tag-azure-devops-services","tag-azure-pipelines","tag-azure-pipelines-features","tag-azure-pipelines-pricing","tag-creating-a-pipeline","tag-microsoft-azure-pipelines","tag-what-is-azure-pipelines"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>An introduction to Azure Pipelines - Testprep Training Blog<\/title>\n<meta name=\"description\" content=\"Taking your knowledge to more advance level by learning the concepts of Microsoft Azure Pipelines. Become Microsoft Azure Professional Now!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"An introduction to Azure Pipelines - Testprep Training Blog\" \/>\n<meta property=\"og:description\" content=\"Taking your knowledge to more advance level by learning the concepts of Microsoft Azure Pipelines. Become Microsoft Azure Professional Now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-08-30T04:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-28T12:00:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/azure-pipeline.png\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Pulkit Dheer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pulkit Dheer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/\",\"url\":\"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/\",\"name\":\"An introduction to Azure Pipelines - Testprep Training Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/blog\/#website\"},\"datePublished\":\"2021-08-30T04:30:00+00:00\",\"dateModified\":\"2021-08-28T12:00:18+00:00\",\"author\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/blog\/#\/schema\/person\/0931136793896e849443990eb08ddb21\"},\"description\":\"Taking your knowledge to more advance level by learning the concepts of Microsoft Azure Pipelines. Become Microsoft Azure Professional Now!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.testpreptraining.ai\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"An introduction to Azure Pipelines\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.testpreptraining.ai\/blog\/#website\",\"url\":\"https:\/\/www.testpreptraining.ai\/blog\/\",\"name\":\"Learning Resources\",\"description\":\"Testprep Training Blogs\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.testpreptraining.ai\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.testpreptraining.ai\/blog\/#\/schema\/person\/0931136793896e849443990eb08ddb21\",\"name\":\"Pulkit Dheer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.testpreptraining.ai\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/162b67a9229d8169c3c928e0ada4e252be835b0d89b1eaff259f320e4a2fd630?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/162b67a9229d8169c3c928e0ada4e252be835b0d89b1eaff259f320e4a2fd630?s=96&d=mm&r=g\",\"caption\":\"Pulkit Dheer\"},\"description\":\"With a background in Engineering and a great enthusiasm for writing, Pulkit focuses on intensive research to create targeted content. He brings his years of learning and experience to his current role. With a zeal towards technological research and powerful use of words dedicated to inspire and help professionals onset their career.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"An introduction to Azure Pipelines - Testprep Training Blog","description":"Taking your knowledge to more advance level by learning the concepts of Microsoft Azure Pipelines. Become Microsoft Azure Professional Now!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/","og_locale":"en_US","og_type":"article","og_title":"An introduction to Azure Pipelines - Testprep Training Blog","og_description":"Taking your knowledge to more advance level by learning the concepts of Microsoft Azure Pipelines. Become Microsoft Azure Professional Now!","og_url":"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/","og_site_name":"Blog","article_published_time":"2021-08-30T04:30:00+00:00","article_modified_time":"2021-08-28T12:00:18+00:00","og_image":[{"width":750,"height":400,"url":"https:\/\/www.testpreptraining.ai\/blog\/wp-content\/uploads\/2021\/08\/azure-pipeline.png","type":"image\/png"}],"author":"Pulkit Dheer","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Pulkit Dheer","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/","url":"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/","name":"An introduction to Azure Pipelines - Testprep Training Blog","isPartOf":{"@id":"https:\/\/www.testpreptraining.ai\/blog\/#website"},"datePublished":"2021-08-30T04:30:00+00:00","dateModified":"2021-08-28T12:00:18+00:00","author":{"@id":"https:\/\/www.testpreptraining.ai\/blog\/#\/schema\/person\/0931136793896e849443990eb08ddb21"},"description":"Taking your knowledge to more advance level by learning the concepts of Microsoft Azure Pipelines. Become Microsoft Azure Professional Now!","breadcrumb":{"@id":"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.testpreptraining.ai\/blog\/an-introduction-to-azure-pipelines\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.testpreptraining.ai\/blog\/"},{"@type":"ListItem","position":2,"name":"An introduction to Azure Pipelines"}]},{"@type":"WebSite","@id":"https:\/\/www.testpreptraining.ai\/blog\/#website","url":"https:\/\/www.testpreptraining.ai\/blog\/","name":"Learning Resources","description":"Testprep Training Blogs","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.testpreptraining.ai\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.testpreptraining.ai\/blog\/#\/schema\/person\/0931136793896e849443990eb08ddb21","name":"Pulkit Dheer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.testpreptraining.ai\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/162b67a9229d8169c3c928e0ada4e252be835b0d89b1eaff259f320e4a2fd630?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/162b67a9229d8169c3c928e0ada4e252be835b0d89b1eaff259f320e4a2fd630?s=96&d=mm&r=g","caption":"Pulkit Dheer"},"description":"With a background in Engineering and a great enthusiasm for writing, Pulkit focuses on intensive research to create targeted content. He brings his years of learning and experience to his current role. With a zeal towards technological research and powerful use of words dedicated to inspire and help professionals onset their career."}]}},"_links":{"self":[{"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/posts\/19638","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/comments?post=19638"}],"version-history":[{"count":17,"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/posts\/19638\/revisions"}],"predecessor-version":[{"id":19666,"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/posts\/19638\/revisions\/19666"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/media\/19639"}],"wp:attachment":[{"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/media?parent=19638"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/categories?post=19638"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.testpreptraining.ai\/blog\/wp-json\/wp\/v2\/tags?post=19638"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}