This repository has been archived by the owner on May 26, 2024. It is now read-only.
forked from DataThirstLtd/azure.databricks.cicd.tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-fulltestsuite.yml
201 lines (181 loc) · 6.93 KB
/
azure-pipelines-fulltestsuite.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
- develop
pr:
autoCancel: true
branches:
include:
- master
jobs:
- job: 'Windows'
pool:
vmImage: 'windows-latest'
steps:
- task: PowerShell@2
displayName: 'Configure Environment'
inputs:
targetType: 'inline'
script: |
$c = @"
{
"BearerToken": "$(BearerToken)",
"Region": "$(AzureRegion)",
"TenantId": "$(TenantId)",
"ApplicationId": "$(ApplicationId)",
"Secret": "$(Secret)",
"DatabricksOrgId": "$(DatabricksOrgId)",
"ResourceGroupName": "$(ResourceGroup)",
"SubscriptionId": "$(SubscriptionId)",
"WorkspaceName": "$(Workspace)",
"ClusterId": "$(ClusterId)",
"Username": "$(TestUser)",
"InstancePoolId": "$(InstancePoolId)",
"SparkVersion": "$(SparkVersion)",
"AddLibraryClusterId": "$(AddLibraryClusterId)",
"AddLibraryInputClusterId": "$(AddLibraryInputClusterId)",
"RemoveLibraryClusterId": "$RemoveLibraryClusterId)",
"KeyVault": "$(KeyVault)"
}
"@
Set-Content .\config.json $c
pwsh: true
workingDirectory: 'Tests'
- task: PowerShell@2
displayName: 'Windows Powershell - Bearer'
inputs:
targetType: 'inline'
script: |
$Mode="Bearer"
Install-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1 -Scope CurrentUser -SkipPublisherCheck -Force
Import-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1
Set-Location "./Tests"
Invoke-Pester -Script @{Path = "./*.tests.ps1"; Parameters = @{mode=$Mode}} -OutputFile "Win-PS-Bearer.xml" -OutputFormat NUnitXML
pwsh: false
- task: PublishTestResults@2
displayName: 'Publish Test Results **/Win-PS-Bearer.xml'
inputs:
testResultsFormat: NUnit
testResultsFiles: '**/Win-PS-Bearer.xml'
testRunTitle: Windows PowerShell - Bearer
publishRunAttachments: false
- task: PowerShell@2
displayName: 'Windows Powershell - Service Principal'
inputs:
targetType: 'inline'
script: |
$Mode="ServicePrincipal"
Install-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1 -Scope CurrentUser -SkipPublisherCheck -Force
Import-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1
Set-Location "./Tests"
Invoke-Pester -Script @{Path = "./*.tests.ps1"; Parameters = @{mode=$Mode}} -OutputFile "Win-PS-SP.xml" -OutputFormat NUnitXML
pwsh: false
- task: PublishTestResults@2
displayName: 'Publish Test Results **/Win-PS-SP.xml'
inputs:
testResultsFormat: NUnit
testResultsFiles: '**/Win-PS-SP.xml'
testRunTitle: Windows PowerShell - ServicePrincipal
publishRunAttachments: false
- task: PowerShell@2
displayName: 'Powershell Core - Bearer'
inputs:
targetType: 'inline'
script: |
$Mode="Bearer"
Install-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1 -Scope CurrentUser -SkipPublisherCheck -Force
Import-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1
Set-Location "./Tests"
Invoke-Pester -Script @{Path = "./*.tests.ps1"; Parameters = @{mode=$Mode}} -OutputFile "Win-PSCORE-Bearer.xml" -OutputFormat NUnitXML
pwsh: true
- task: PublishTestResults@2
displayName: 'Publish Test Results **/Win-PSCORE-Bearer.xml'
inputs:
testResultsFormat: NUnit
testResultsFiles: '**/Win-PSCORE-Bearer.xml'
testRunTitle: Windows PowerShell Core - Bearer
publishRunAttachments: false
- task: PowerShell@2
displayName: 'Windows Powershell Core - Service Principal'
inputs:
targetType: 'inline'
script: |
$Mode="ServicePrincipal"
Install-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1 -Scope CurrentUser -SkipPublisherCheck -Force
Import-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1
Set-Location "./Tests"
Invoke-Pester -Script @{Path = "./*.tests.ps1"; Parameters = @{mode=$Mode}} -OutputFile "Win-PSCORE-SP.xml" -OutputFormat NUnitXML
pwsh: true
- task: PublishTestResults@2
displayName: 'Publish Test Results **/Win-PS-SP.xml'
inputs:
testResultsFormat: NUnit
testResultsFiles: '**/Win-PSCORE-SP.xml'
testRunTitle: Windows PowerShell Core - ServicePrincipal
publishRunAttachments: false
- job: 'Ubuntu'
pool:
vmImage: 'ubuntu-latest'
steps:
- task: PowerShell@2
displayName: 'Configure Environment'
inputs:
targetType: 'inline'
script: |
$c = @"
{
"BearerToken": "$(BearerToken)",
"Region": "$(AzureRegion)",
"TenantId": "$(TenantId)",
"ApplicationId": "$(ApplicationId)",
"Secret": "$(Secret)",
"DatabricksOrgId": "$(DatabricksOrgId)",
"ResourceGroupName": "$(ResourceGroup)",
"SubscriptionId": "$(SubscriptionId)",
"WorkspaceName": "$(Workspace)",
"ClusterId": "$(ClusterId)",
"Username": "$(TestUser)"
}
"@
Set-Content .\config.json $c
pwsh: true
workingDirectory: 'Tests'
- task: PowerShell@2
displayName: 'Powershell Core - Bearer'
inputs:
targetType: 'inline'
script: |
$Mode="Bearer"
Install-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1 -Scope CurrentUser -SkipPublisherCheck -Force
Import-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1
Set-Location "./Tests"
Invoke-Pester -Script @{Path = "./*.tests.ps1"; Parameters = @{mode=$Mode}} -OutputFile "U-PS-Bearer.xml" -OutputFormat NUnitXML
pwsh: true
- task: PublishTestResults@2
displayName: 'Publish Test Results **/U-PS-Bearer.xml'
inputs:
testResultsFormat: NUnit
testResultsFiles: '**/U-PS-Bearer.xml'
testRunTitle: Ubuntu PowerShell Core - Bearer
publishRunAttachments: false
- task: PowerShell@2
displayName: 'Ubuntu Powershell Core - Service Principal'
inputs:
targetType: 'inline'
script: |
$Mode="ServicePrincipal"
Install-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1 -Scope CurrentUser -SkipPublisherCheck -Force
Import-Module Pester -MinimumVersion 4.4.2 -MaximumVersion 4.10.1
Set-Location "./Tests"
Invoke-Pester -Script @{Path = "./*.tests.ps1"; Parameters = @{mode=$Mode}} -OutputFile "U-PS-SP.xml" -OutputFormat NUnitXML
pwsh: true
- task: PublishTestResults@2
displayName: 'Publish Test Results **/U-PS-SP.xml'
inputs:
testResultsFormat: NUnit
testResultsFiles: '**/U-PS-SP.xml'
testRunTitle: Ubuntu PowerShell Core - ServicePrincipal
publishRunAttachments: false