AZ-400 · Question #308
You have Azure Pipelines and GitHub integrated as a source code repository. The build pipeline has continuous integration enabled. You plan to trigger an automated build whenever code changes are comm
The correct answer is B. batch changes. Batching CI runs If you have many team members uploading changes often, you may want to reduce the number of runs you start. If you set batch to true, when a pipeline is running, the system waits until the run is completed, then starts another run with all changes that have not y
Question
Options
- Apath filters
- Bbatch changes
- Cscheduled builds
- Dbranch filters
How the community answered
(45 responses)- A9% (4)
- B87% (39)
- C2% (1)
- D2% (1)
Explanation
Batching CI runs If you have many team members uploading changes often, you may want to reduce the number of runs you start. If you set batch to true, when a pipeline is running, the system waits until the run is completed, then starts another run with all changes that have not yet been built. # specific branch build with batching To clarify this example, let us say that a push A to master caused the above pipeline to run. While that pipeline is running, additional pushes B and C occur into the repository. These updates do not start new independent runs immediately. But after the first run is completed, all pushes until that point of time are batched together and a new run is started. https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/github
Community Discussion
No community discussion yet for this question.