Buradasın
Azure DevOps Pipeline Structure
learn.microsoft.com/en-us/azure/devops/pipelines/yaml-schema/pipeline?view=azure-pipelinesYapay zekadan makale özeti
- Core Components
- Pipeline consists of one or more stages describing CI/CD processes
- Stages are major divisions like "Build this app" or "Run tests"
- Jobs are units of work assignable to same machine
- Jobs can be arranged in dependency graphs
- YAML Structure
- Pipeline defined using stages, jobs, and steps keywords
- Stages can be single or multiple jobs
- Steps can be tasks, scripts, or external templates
- Simple pipelines can omit stages and jobs
- Key Properties
- Name property configures pipeline run number
- Pool property specifies where jobs run
- Triggers can be continuous integration or pull requests
- Resources include containers and repositories
- Variables can be defined for pipeline
- Implementation Notes
- Many options are optional with good defaults
- Single-job builds can omit stages and jobs
- Pipeline can extend existing templates
- Job execution strategies can be configured