Relative Content

Tag Archive for azure-devopsazure-pipelinesazure-pipelines-yaml

Azure pipeline for multistage

– stage: PublishStage dependsOn: [PreStage, CheckTestProjects, TestStage] condition: | and( succeeded(), or( eq(dependencies.TestStage.result, ‘succeeded’), eq(dependencies.TestStage.result, ‘skipped’) ) ) jobs: – template: PublishNuget_jobs_template.yml@templates parameters: buildConfiguration: ‘${{ variables.buildConfiguration }}’ feed: ‘${{ variables.feed }}’ The pipeline always skips the publish stage. What i would like to achieve: If the TestStage was skipped (for eg.: testproject did not exist) […]

Azure pipeline for multistage

– stage: PublishStage dependsOn: [PreStage, CheckTestProjects, TestStage] condition: | and( succeeded(), or( eq(dependencies.TestStage.result, ‘succeeded’), eq(dependencies.TestStage.result, ‘skipped’) ) ) jobs: – template: PublishNuget_jobs_template.yml@templates parameters: buildConfiguration: ‘${{ variables.buildConfiguration }}’ feed: ‘${{ variables.feed }}’ The pipeline always skips the publish stage. What i would like to achieve: If the TestStage was skipped (for eg.: testproject did not exist) […]

Is there any way to create reusable and scalable build and deployment pipeline(s) for similar services in an Azure DevOps environment?

and apoligies in advance for not being able to keep this any shorter.
I’m working with my team on a relatively large structure of related services (/ microservices) all hosted on Docker containers, working in a tandem. As our work has progressed, progressively more services have been added, and old legacy systems have even been rebuilt to fit our newer standards, making more of our internal IT structure transparent to people working on our development team.