I am working with azure pipelines and I have some stages with jobs inside it.
I am trying to figure it out how can I run a stage 3 times before moving to next stage.
stages:
- stage: SomeTests
jobs:
- job:
...
- stage: Installation
dependsOn: SomeTests
jobs:
- job:
...
I’d like to run stage SomeTests 3 times and than run stage Installation.
How can I do that?