Skip to content

Commit 1338cc5

Browse files
authored
feat: DTOSS-9902 End to End Environment deployments updates v2 (#1614)
* Add matrix Sandbox deployment * Update condition on smoke tests
1 parent b1a6998 commit 1338cc5

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.azuredevops/pipelines/cd-infrastructure-dev-core.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,13 @@ stages:
102102
dependsOn: regression_e2e_epic1_stage
103103
${{ if eq(testType, 'regression_e2e_epic3') }}:
104104
dependsOn: regression_e2e_epic2_stage
105-
condition: succeededOrFailed()
105+
condition: |
106+
and(
107+
in(dependencies.re_tag_stage.result, 'Succeeded', 'Skipped'),
108+
in(dependencies.terraform_deploy.jobs.terraform_apply.result, 'Succeeded', 'Skipped'),
109+
in(dependencies.db_changes_stage.jobs.db_changes.result, 'Succeeded', 'Skipped'),
110+
in(dependencies.restart_functions_stage.jobs.restart_functions.result, 'Succeeded', 'Skipped')
111+
)
106112
jobs:
107113
- job: ${{ testType }}_job
108114
pool:

.github/workflows/cicd-1-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
contents: read
157157
uses: ./.github/workflows/stage-4-deploy.yaml
158158
with:
159-
environments: "[\"development\",\"sbrk\"]"
159+
environments: "[\"development\",\"sandbox\"]"
160160
commit_sha: ${{ github.sha }}
161161
secrets: inherit
162162
validate-title-stage:

0 commit comments

Comments
 (0)