Events
Mar 17, 11 PM - Mar 21, 11 PM
Join the meetup series to build scalable AI solutions based on real-world use cases with fellow developers and experts.
Register nowThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Specifies the jobs that make up the work of a stage.
Specifies the jobs that make up the work of a pipeline.
jobs: [ job | deployment | template ] # Specifies the jobs that make up the work of a stage.
jobs: [ job ] # Specifies the jobs that make up the work of a pipeline.
Definitions that reference this definition: pipeline, stages.stage
Definitions that reference this definition: pipeline
Type | Description |
---|---|
jobs.job | A job is a collection of steps run by an agent or on a server. |
jobs.deployment | A deployment job is a special type of job. It's a collection of steps to run sequentially against the environment. |
jobs.template | A set of jobs defined in a template. |
Type | Description |
---|---|
jobs.job | A job is a collection of steps run by an agent or on a server. |
A job is a collection of steps run by an agent or on a server. Jobs can run conditionally and might depend on earlier jobs.
Note
If you have only one stage and one job, you can use single-job syntax as a shorter way to describe the steps to run.
jobs:
- job: MyJob
displayName: My First Job
continueOnError: true
workspace:
clean: outputs
steps:
- script: echo My first job
uses
, see Limit job authorization scope to referenced Azure DevOps repositories. For more information about workspaces, including clean options, see the workspace topic in Jobs.Events
Mar 17, 11 PM - Mar 21, 11 PM
Join the meetup series to build scalable AI solutions based on real-world use cases with fellow developers and experts.
Register now