Skip to content

Commit 467446c

Browse files
authored
feat: DTOSS-9902 Enable End to End PL in Dev (#1545)
* Enable End to End PL in Dev * Change timing of scheduled pipelines
1 parent 94ec124 commit 467446c

7 files changed

Lines changed: 13 additions & 13 deletions

.azuredevops/pipelines/post-deployment-tests-dev.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ trigger: none
44
pr: none
55

66
schedules:
7-
- cron: "15 7 * * 1-5" # Every weekday (Mon-Fri) at 07:15 UTC i.e 8:15 BST
7+
- cron: "00 5 * * 1-5" # Every weekday (Mon-Fri) at 05:00 UTC i.e 06:00 BST
88
displayName: Weekdays run
99
branches:
1010
include:
@@ -16,7 +16,7 @@ resources:
1616
- repository: dtos-devops-templates
1717
type: github
1818
name: NHSDigital/dtos-devops-templates
19-
ref: d6d6e3e99459d9d71a83fa5affa900a6c339a3b5
19+
ref: 143bb43a2f95dd23e3c579a3bf87b29a63ee4003
2020
endpoint: NHSDigital
2121

2222
variables:

.azuredevops/pipelines/task_azure_sql_scaling_dev.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pool:
88
name: private-pool-dev-uks
99

1010
schedules:
11-
- cron: "0 7 * * *" # Run at 7:00 AM UTC
11+
- cron: "45 4 * * *" # Run at 04:45 AM UTC
1212
displayName: 'Scale_Peak'
1313
branches:
1414
include:
@@ -27,7 +27,7 @@ resources:
2727
- repository: dtos-devops-templates
2828
type: github
2929
name: NHSDigital/dtos-devops-templates
30-
ref: d6d6e3e99459d9d71a83fa5affa900a6c339a3b5
30+
ref: 143bb43a2f95dd23e3c579a3bf87b29a63ee4003
3131
endpoint: NHSDigital
3232

3333
parameters:

.azuredevops/pipelines/task_azure_sql_scaling_int.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resources:
2727
- repository: dtos-devops-templates
2828
type: github
2929
name: NHSDigital/dtos-devops-templates
30-
ref: d6d6e3e99459d9d71a83fa5affa900a6c339a3b5
30+
ref: 143bb43a2f95dd23e3c579a3bf87b29a63ee4003
3131
endpoint: NHSDigital
3232

3333
parameters:

.azuredevops/pipelines/task_azure_sql_scaling_nft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resources:
2727
- repository: dtos-devops-templates
2828
type: github
2929
name: NHSDigital/dtos-devops-templates
30-
ref: d6d6e3e99459d9d71a83fa5affa900a6c339a3b5
30+
ref: 143bb43a2f95dd23e3c579a3bf87b29a63ee4003
3131
endpoint: NHSDigital
3232

3333
parameters:

.azuredevops/pipelines/task_azure_sql_scaling_preprod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resources:
2727
- repository: dtos-devops-templates
2828
type: github
2929
name: NHSDigital/dtos-devops-templates
30-
ref: d6d6e3e99459d9d71a83fa5affa900a6c339a3b5
30+
ref: 143bb43a2f95dd23e3c579a3bf87b29a63ee4003
3131
endpoint: NHSDigital
3232

3333
parameters:

.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: "[\"sandbox\"]"
159+
environments: "[\"development\"]"
160160
commit_sha: ${{ github.sha }}
161161
secrets: inherit
162162
validate-title-stage:

.github/workflows/stage-4-deploy.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ jobs:
6666
6767
# Define which tests to run based on the environment
6868
declare -A test_types=(
69-
["dev"]="smoke_e2e,regression_api,regression_e2e_epic1,regression_e2e_epic2,regression_e2e_epic3"
70-
["nft"]="smoke_e2e,regression_api,regression_e2e_epic1,regression_e2e_epic2,regression_e2e_epic3"
71-
["int"]=""
69+
["development"]="smoke_e2e"
70+
["nft"]=""
71+
["integration"]=""
7272
["sandbox"]="smoke_e2e,regression_api"
73-
["pre"]=""
74-
["prod"]=""
73+
["preprod"]=""
74+
["production"]=""
7575
)
7676
7777
git_short_sha=$(git rev-parse --short ${{inputs.commit_sha}})

0 commit comments

Comments
 (0)