0

My azure pipeline consists of multiple stages. Each stage has one job. Usually, when I run a pipeline it's checking out from the repo for each stage. But I don't want it to be check-out for every stage. Is there any option for disabling it?

Viraj
  • 3
  • 1
  • 4

1 Answers1

0

You know what each job is actually a seprate machine, and this is a mainly reason why it is dowloaded each time. If you don't want to check out it you need to add - checkout: none for each step. However, deployment job doesn't checkout code automatically.

Krzysztof Madej
  • 32,704
  • 10
  • 78
  • 107