Understanding the basic terms and parts of Azure Pipelines helps you further explore how it can help you deliver better code more efficiently and reliably. Agent When your build or deployment runs, the system begins one or more jobs. An agent is installable software that runs a build or deployment job. Artifact An artifact is a collection of files or packages published by a build. Artifacts are made available for the tasks, such as distribution or deployment. Build A build represents one execution of a pipeline. It collects the logs associated with running the steps and the test results. Continuous delivery Continuous delivery (CD) (also known as Continuous Deployment) is a process by which code is built, tested, and deployed to one or more test and production stages. Deploying and testing in multiple stages helps drive quality. Continuous integration systems produce deployable artifacts, which include infrastructure and apps. Automated release pipelines co...