|
1 |
| -parameters: |
2 |
| - - name: environmentIdentifier |
3 |
| - displayName: Environment identifier |
4 |
| - type: string |
5 |
| - - name: environmentDisplayName |
6 |
| - displayName: Environment display name |
7 |
| - type: string |
8 |
| - - name: environmentDomainName |
9 |
| - displayName: Environment domain name |
10 |
| - type: string |
11 |
| - - name: buildUrl |
12 |
| - displayName: Build URL |
13 |
| - type: string |
14 |
| - - name: repositoryName |
15 |
| - displayName: Repository Name |
16 |
| - type: string |
17 |
| - |
18 | 1 | stages:
|
19 |
| - - stage: ProvisionEnvironment |
20 |
| - displayName: Provision environment |
21 |
| - variables: |
22 |
| - - name: Environment.Identifier |
23 |
| - value: ${{ parameters.environmentIdentifier }} |
24 |
| - - name: Environment.DisplayName |
25 |
| - value: ${{ parameters.environmentDisplayName }} $(Environment.Identifier) |
26 |
| - - name: TestEnvironment.DomainName |
27 |
| - value: ${{ parameters.environmentDomainName }}-$(Environment.Identifier) |
28 |
| - - group: Cap Dev - CI |
29 |
| - jobs: |
30 |
| - - job: ProvisionEnvironmentJob |
31 |
| - displayName: Provision environment |
32 |
| - steps: |
33 |
| - - task: PowerPlatformToolInstaller@0 |
34 |
| - displayName: Install Power Platform Build Tools |
35 |
| - inputs: |
36 |
| - DefaultVersion: true |
37 |
| - - task: PowerPlatformCreateEnvironment@0 |
38 |
| - displayName: Create environment |
39 |
| - inputs: |
40 |
| - authenticationType: PowerPlatformSPN |
41 |
| - PowerPlatformSPN: Dataverse (placeholder) |
42 |
| - DisplayName: $(Environment.DisplayName) |
43 |
| - EnvironmentSku: Sandbox |
44 |
| - LocationName: unitedkingdom |
45 |
| - LanguageName: 1033 |
46 |
| - CurrencyName: GBP |
47 |
| - DomainName: $(TestEnvironment.DomainName) |
48 |
| - - powershell: | |
49 |
| - echo "##vso[task.setvariable variable=EnvironmentUrl;isOutput=true]$env:BUILDTOOLS_ENVIRONMENTURL" |
50 |
| - echo "##vso[task.setvariable variable=EnvironmentName;isOutput=true]$env:BUILDTOOLS_ENVIRONMENTID" |
51 |
| - displayName: Set output variables |
52 |
| - name: SetEnvironmentOutputVariables |
53 |
| - - task: PowerShell@2 |
54 |
| - displayName: Sync required users |
55 |
| - inputs: |
56 |
| - filePath: '.\scripts\Sync-DataverseUsers.ps1' |
57 |
| - arguments: > |
58 |
| - -EnvironmentName $env:BUILDTOOLS_ENVIRONMENTID |
59 |
| - -ObjectIds @( |
60 |
| - "6bc9aff9-6f6e-49ac-96df-d862f20c3d63" <# ado.integration #> |
61 |
| - ) |
62 |
| - -TenantId "f6dd1854-a44d-45a5-9537-c809a5d76c74" |
63 |
| - -ClientId $(Application User Client ID) |
64 |
| - -ClientSecret $(Application User Client Secret) |
65 |
| - - task: PowerShell@2 |
66 |
| - displayName: Update user settings to English (United Kingdom) |
67 |
| - inputs: |
68 |
| - filePath: '.\scripts\Set-AllUserLocalesToUk.ps1' |
69 |
| - env: |
70 |
| - environmentUrl: $(SetEnvironmentOutputVariables.EnvironmentUrl) |
71 |
| - clientId: $(Application User Client ID) |
72 |
| - clientSecret: $(Application User Client Secret) |
73 |
| - |
| 2 | + |
74 | 3 | - stage: BuildAndTest
|
75 | 4 | displayName: Build and Test
|
76 |
| - dependsOn: ProvisionEnvironment |
77 |
| - variables: |
78 |
| - - name: BuildTools.EnvironmentUrl |
79 |
| - value: $[ stageDependencies.ProvisionEnvironment.ProvisionEnvironmentJob.outputs['SetEnvironmentOutputVariables.EnvironmentUrl'] ] |
80 |
| - - name: BuildTools.EnvironmentId |
81 |
| - value: $[ stageDependencies.ProvisionEnvironment.ProvisionEnvironmentJob.outputs['SetEnvironmentOutputVariables.EnvironmentName'] ] |
82 |
| - - group: Dataverse users |
83 | 5 | jobs:
|
84 | 6 | - template: build-and-test-job.yml
|
85 |
| - parameters: |
86 |
| - environmentUrl: $(BuildTools.EnvironmentUrl) |
87 |
| - environmentName: $(BuildTools.EnvironmentId) |
88 |
| - username: $(DataverseUsers.AzureDevOps.Username) |
89 |
| - password: $(DataverseUsers.AzureDevOps.Password) |
90 |
| - - stage: ManualValidation |
91 |
| - displayName: Manual validation |
92 |
| - dependsOn: |
93 |
| - - ProvisionEnvironment |
94 |
| - - BuildAndTest |
95 |
| - condition: and(not(canceled()), ne(dependencies.ProvisionEnvironment.outputs['ProvisionEnvironmentJob.SetEnvironmentOutputVariables.EnvironmentUrl'], '')) |
96 |
| - variables: |
97 |
| - RepositoryName: ${{ parameters.repositoryName }} |
98 |
| - BuildUrl: ${{ parameters.buildUrl }} |
99 |
| - BuildTools.EnvironmentUrl: $[ stageDependencies.ProvisionEnvironment.ProvisionEnvironmentJob.outputs['SetEnvironmentOutputVariables.EnvironmentUrl'] ] |
100 |
| - jobs: |
101 |
| - - job: ManualValidationCommentJob |
102 |
| - displayName: Manual validation (comment) |
103 |
| - steps: |
104 |
| - - task: GitHubAppCreateIssueComment@1 |
105 |
| - name: CreateComment |
106 |
| - inputs: |
107 |
| - privateKey: capgemini-microsoft-bot.private-key.pem |
108 |
| - appId: 236185 |
109 |
| - repo: $(Build.Repository.Name) |
110 |
| - body: | |
111 |
| - **Manual validation requested** |
112 |
| - Please perform any checks required on $(BuildTools.EnvironmentUrl) then approve $(BuildUrl). |
113 |
| - - job: ManualValidationJob |
114 |
| - displayName: Manual validation |
115 |
| - pool: server |
116 |
| - timeoutInMinutes: 8640 |
117 |
| - steps: |
118 |
| - - task: ManualValidation@0 |
119 |
| - displayName: Wait for manual validation |
120 |
| - timeoutInMinutes: 7200 |
121 |
| - inputs: |
122 |
| - onTimeout: resume |
123 |
| - instructions: Please perform any checks required on $(BuildTools.EnvironmentUrl). |
124 |
| - - stage: DeleteEnvironment |
125 |
| - displayName: Delete environment |
126 |
| - dependsOn: |
127 |
| - - ProvisionEnvironment |
128 |
| - - ManualValidation |
129 |
| - condition: ne(dependencies.ProvisionEnvironment.outputs['ProvisionEnvironmentJob.SetEnvironmentOutputVariables.EnvironmentUrl'], '') |
130 |
| - variables: |
131 |
| - BuildTools.EnvironmentUrl: $[ stageDependencies.ProvisionEnvironment.ProvisionEnvironmentJob.outputs['SetEnvironmentOutputVariables.EnvironmentUrl'] ] |
132 |
| - CreateComment.CommentId: $[ stageDependencies.ManualValidation.ManualValidationCommentJob.outputs['CreateComment.CommentId'] ] |
133 |
| - jobs: |
134 |
| - - job: DeleteEnvironmentJob |
135 |
| - displayName: Delete environment |
136 |
| - steps: |
137 |
| - - checkout: none |
138 |
| - - task: PowerPlatformToolInstaller@0 |
139 |
| - displayName: Install Power Platform Build Tools |
140 |
| - inputs: |
141 |
| - DefaultVersion: true |
142 |
| - - task: PowerPlatformDeleteEnvironment@0 |
143 |
| - displayName: Delete environment |
144 |
| - continueOnError: true |
145 |
| - inputs: |
146 |
| - authenticationType: PowerPlatformSPN |
147 |
| - PowerPlatformSPN: Dataverse (placeholder) |
148 |
| - - task: GitHubAppDeleteIssueComment@1 |
149 |
| - condition: ne(variables['CreateComment.CommentId'], '') |
150 |
| - inputs: |
151 |
| - privateKey: capgemini-microsoft-bot.private-key.pem |
152 |
| - appId: 236185 |
153 |
| - repo: $(Build.Repository.Name) |
154 |
| - commentId: $(CreateComment.CommentId) |
0 commit comments