mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 07:45:49 +00:00
Fixed: stage names
This commit is contained in:
parent
744e9e21be
commit
fc95a32d05
1 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ pool:
|
||||||
name: $(Build.DefinitionName).$(SourceBranchName).$(Date:yyyyMMdd)$(Rev:.r)
|
name: $(Build.DefinitionName).$(SourceBranchName).$(Date:yyyyMMdd)$(Rev:.r)
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- stage: ContinuousIntegration+Delivery
|
- stage: CI_CDelivery
|
||||||
displayName: 'Continuous Integration and Delivery'
|
displayName: 'Continuous Integration and Delivery'
|
||||||
dependsOn: []
|
dependsOn: []
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -88,9 +88,9 @@ stages:
|
||||||
parallel: true # Increased speed through multi-threaded copying.
|
parallel: true # Increased speed through multi-threaded copying.
|
||||||
parallelCount: 8 # Dependent upon CPU capabilities.
|
parallelCount: 8 # Dependent upon CPU capabilities.
|
||||||
|
|
||||||
- stage: ContinuousDeployment
|
- stage: CDeployment
|
||||||
displayName: 'Continuous Deployment'
|
displayName: 'Continuous Deployment'
|
||||||
dependsOn: [ContinuousIntegration+Delivery]
|
dependsOn: [CI_CDelivery]
|
||||||
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
|
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
|
||||||
jobs:
|
jobs:
|
||||||
- job: DeployWebApp
|
- job: DeployWebApp
|
||||||
|
|
Loading…
Reference in a new issue