-
Notifications
You must be signed in to change notification settings - Fork 4
379 lines (336 loc) · 17.9 KB
/
Automation Master SDK Workflow.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
name: Automation Master Workflow
# Controls when the workflow will run
on:
# Allows you to run this workflow from another workflow
workflow_call:
outputs:
quality_gate:
description: "Results from Skyline Quality Gate."
value: ${{ jobs.validate_skyline_quality_gate.outputs.quality }}
#artifact-id-release:
artifact-id:
description: "Artifact ID of uploaded Package if successful."
value: ${{ jobs.artifact_creation_registration.outputs.artifact-id }}
# artifact-id-development:
# description: "Artifact ID of dev uploaded Package if successful."
inputs:
referenceName:
required: true
type: string
runNumber:
required: true
type: string
referenceType:
required: true
type: string
repository:
required: true
type: string
owner:
required: true
type: string
sonarCloudProjectName:
required: true
type: string
catalog-identifier:
required: true
type: string
catalog-manifest-path:
required: true
type: string
catalog-readme-path:
required: true
type: string
secrets:
api-key:
required: false
sonarCloudToken:
required: true
azureToken:
required: false
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
validate_skyline_quality_gate:
name: SDK Skyline Quality Gate
runs-on: windows-latest
env:
detected-unit-tests: none
outputs:
quality: ${{ steps.quality-step.outputs.results }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Initialize
run: |
echo "workspace" ${{ github.workspace }}
echo "ref name" ${{ inputs.referenceName }}
echo "run number" ${{ inputs.runNumber }}
echo "ref type" ${{ inputs.referenceType }}
echo "repository" ${{ inputs.repository }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'zulu'
- name: Find .sln file
id: findSlnFile
run: |
echo solutionFilePath=$(find . -type f -name '*.sln') >> $GITHUB_OUTPUT
shell: bash
- name: Detect .csproj files
id: detectCsprojFiles
run: |
$csprojFileCount = Get-ChildItem . -Recurse -File -Filter *.csproj | Measure-Object | Select-Object -ExpandProperty Count
$result = "false"
if($csprojFileCount -gt 0){ $result = "true" }
Write-Output "csproj-file-present=$($result)" >> $Env:GITHUB_OUTPUT
shell: pwsh
# TODO: Refactor this in the future to a single stage with a loop that adds all the sources you specify.
- name: Enable Skyline GitHub NuGet Registry
if: inputs.owner == 'SkylineCommunications'
run: |
$SOURCE_NAME="PrivateGitHubNugets"
$SOURCE_URL="https://nuget.pkg.github.com/SkylineCommunications/index.json"
# Check if the source exists. If it does, update it.
if (dotnet nuget list source | Select-String -Pattern $SOURCE_NAME) {
Write-Host "Updating existing source $SOURCE_NAME."
dotnet nuget update source $SOURCE_NAME --source $SOURCE_URL --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
} else {
Write-Host "Adding new source $SOURCE_NAME."
dotnet nuget add source $SOURCE_URL --name $SOURCE_NAME --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
}
shell: pwsh
- name: Enable Skyline Azure Cloud NuGet Registry
env:
AZURE_TOKEN_EXISTS: ${{ secrets.azureToken }}
if: env.AZURE_TOKEN_EXISTS != null && inputs.owner == 'SkylineCommunications'
run: |
$SOURCE_NAME="CloudNuGets"
$SOURCE_URL="https://pkgs.dev.azure.com/skyline-cloud/Cloud_NuGets/_packaging/CloudNuGet/nuget/v3/index.json"
# Check if the source exists. If it does, update it.
if (dotnet nuget list source | Select-String -Pattern $SOURCE_NAME) {
Write-Host "Updating existing source $SOURCE_NAME."
dotnet nuget update source $SOURCE_NAME --source $SOURCE_URL --username az --password ${{ secrets.azureToken }} --store-password-in-clear-text
} else {
Write-Host "Adding new source $SOURCE_NAME."
dotnet nuget add source $SOURCE_URL --name $SOURCE_NAME --username az --password ${{ secrets.azureToken }} --store-password-in-clear-text
}
- name: Enable Skyline Azure Private NuGet Registry
env:
AZURE_TOKEN_EXISTS: ${{ secrets.azureToken }}
if: env.AZURE_TOKEN_EXISTS != null && inputs.owner == 'SkylineCommunications'
run: |
$SOURCE_NAME="PrivateAzureNuGets"
$SOURCE_URL="https://pkgs.dev.azure.com/skyline-cloud/_packaging/skyline-private-nugets/nuget/v3/index.json"
# Check if the source exists. If it does, update it.
if (dotnet nuget list source | Select-String -Pattern $SOURCE_NAME) {
Write-Host "Updating existing source $SOURCE_NAME."
dotnet nuget update source $SOURCE_NAME --source $SOURCE_URL --username az --password ${{ secrets.azureToken }} --store-password-in-clear-text
} else {
Write-Host "Adding new source $SOURCE_NAME."
dotnet nuget add source $SOURCE_URL --name $SOURCE_NAME --username az --password ${{ secrets.azureToken }} --store-password-in-clear-text
}
- name: Building
if: steps.detectCsprojFiles.outputs.csproj-file-present == 'true'
run: dotnet build "${{ steps.findSlnFile.outputs.solutionFilePath }}" -p:DefineConstants="DCFv1%3BDBInfo%3BALARM_SQUASHING" --configuration Release -nodeReuse:false
- name: Unit Tests
# when not using MSTest you'll need to install coverlet.collector nuget in your test solutions
id: unit-tests
if: steps.detectCsprojFiles.outputs.csproj-file-present == 'true'
run: dotnet test "${{ steps.findSlnFile.outputs.solutionFilePath }}" --filter TestCategory!=IntegrationTest --logger "trx;logfilename=unitTestResults.trx" --collect "XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=cobertura,opencover
continue-on-error: true
- name: Install SonarCloud scanner
if: steps.detectCsprojFiles.outputs.csproj-file-present == 'true'
run: |
dotnet tool install dotnet-sonarscanner --global
- name: Prepare SonarCloud Variables
id: prepSonarCloudVar
if: steps.detectCsprojFiles.outputs.csproj-file-present == 'true'
run: |
import os
env_file = os.getenv('GITHUB_ENV')
with open(env_file, "a") as myfile:
myfile.write("lowerCaseOwner=" + str.lower("${{ inputs.owner }}"))
shell: python
- name: Get SonarCloud Status
id: get-sonarcloud-status
if: steps.detectCsprojFiles.outputs.csproj-file-present == 'true'
run: |
echo "sonarCloudProjectStatus=$(curl https://${{ secrets.sonarCloudToken }}@sonarcloud.io/api/qualitygates/project_status?projectKey=${{ inputs.sonarCloudProjectName }})" >> $env:GITHUB_OUTPUT
continue-on-error: true
- name: Trigger Initial Analysis
if: steps.detectCsprojFiles.outputs.csproj-file-present == 'true' && fromJson(steps.get-sonarcloud-status.outputs.sonarCloudProjectStatus).projectStatus.status == 'NONE'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.sonarCloudToken }}
run: |
dotnet sonarscanner begin /k:"${{ inputs.sonarCloudProjectName }}" /o:"${{ env.lowerCaseOwner }}" /d:sonar.token="${{ secrets.sonarCloudToken }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths="**/TestResults/**/coverage.opencover.xml" /d:sonar.cs.vstest.reportsPaths="**/TestResults/**.trx"
dotnet build "${{ steps.findSlnFile.outputs.solutionFilePath }}" -p:DefineConstants="DCFv1%3BDBInfo%3BALARM_SQUASHING" --configuration Release -nodeReuse:false
dotnet sonarscanner end /d:sonar.token="${{ secrets.sonarCloudToken }}"
continue-on-error: true
- name: Analyze
if: steps.detectCsprojFiles.outputs.csproj-file-present == 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.sonarCloudToken }}
run: |
dotnet sonarscanner begin /k:"${{ inputs.sonarCloudProjectName }}" /o:"${{ env.lowerCaseOwner }}" /d:sonar.token="${{ secrets.sonarCloudToken }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths="**/TestResults/**/coverage.opencover.xml" /d:sonar.cs.vstest.reportsPaths="**/TestResults/**.trx"
dotnet build "${{ steps.findSlnFile.outputs.solutionFilePath }}" -p:DefineConstants="DCFv1%3BDBInfo%3BALARM_SQUASHING" --configuration Release -nodeReuse:false
dotnet sonarscanner end /d:sonar.token="${{ secrets.sonarCloudToken }}"
continue-on-error: true
- name: SonarCloud Quality Gate check
id: sonarcloud-quality-gate-check
if: steps.detectCsprojFiles.outputs.csproj-file-present == 'true'
uses: sonarsource/sonarqube-quality-gate-action@master
with:
scanMetadataReportFile: .sonarqube/out/.sonar/report-task.txt
continue-on-error: true
# Force to fail step after specific time.
timeout-minutes: 5
env:
SONAR_TOKEN: ${{ secrets.sonarCloudToken }}
- name: Quality Gate
id: quality-step
run: |
if "${{ steps.detectCsprojFiles.outputs.csproj-file-present }}" == "false":
print("Quality gate skipped as no .csproj files were detected.")
exit(0)
if "${{ steps.unit-tests.outcome }}" == "failure" or "${{ steps.sonarcloud-quality-gate-check.outcome }}" == "failure" or "${{ steps.sonarcloud-quality-gate-check.outputs.quality-gate-status }}" == "FAILED":
print("Quality gate failed due to:")
if "${{ steps.unit-tests.outcome }}" == "failure":
print("- Test failures")
if "${{ steps.sonarcloud-quality-gate-check.outcome }}" == "failure":
print("- Could not retrieve SonarCloud quality gate status")
if "${{ steps.sonarcloud-quality-gate-check.outputs.quality-gate-status }}" == "FAILED":
print("- Code analysis quality gate failed")
if "${{ steps.unit-tests.outcome }}" == "failure" or "${{ steps.sonarcloud-quality-gate-check.outcome }}" == "failure" or "${{ steps.sonarcloud-quality-gate-check.outputs.quality-gate-status }}" == "FAILED":
exit(1)
shell: python
artifact_creation:
name: Artifact Creation
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Find .sln file
id: findSlnFile
run: |
echo solutionFilePath=$(find . -type f -name '*.sln') >> $GITHUB_OUTPUT
shell: bash
# TODO: Refactor this in the future to a single stage with a loop that adds all the sources you specify.
- name: Enable Skyline GitHub NuGet Registry
if: inputs.owner == 'SkylineCommunications'
run: |
$SOURCE_NAME="PrivateGitHubNugets"
$SOURCE_URL="https://nuget.pkg.github.com/SkylineCommunications/index.json"
# Check if the source exists. If it does, update it.
if (dotnet nuget list source | Select-String -Pattern $SOURCE_NAME) {
Write-Host "Updating existing source $SOURCE_NAME."
dotnet nuget update source $SOURCE_NAME --source $SOURCE_URL --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
} else {
Write-Host "Adding new source $SOURCE_NAME."
dotnet nuget add source $SOURCE_URL --name $SOURCE_NAME --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
}
shell: pwsh
- name: Enable Skyline Azure Cloud NuGet Registry
env:
AZURE_TOKEN_EXISTS: ${{ secrets.azureToken }}
if: env.AZURE_TOKEN_EXISTS != null && inputs.owner == 'SkylineCommunications'
run: |
$SOURCE_NAME="CloudNuGets"
$SOURCE_URL="https://pkgs.dev.azure.com/skyline-cloud/Cloud_NuGets/_packaging/CloudNuGet/nuget/v3/index.json"
# Check if the source exists. If it does, update it.
if (dotnet nuget list source | Select-String -Pattern $SOURCE_NAME) {
Write-Host "Updating existing source $SOURCE_NAME."
dotnet nuget update source $SOURCE_NAME --source $SOURCE_URL --username az --password ${{ secrets.azureToken }} --store-password-in-clear-text
} else {
Write-Host "Adding new source $SOURCE_NAME."
dotnet nuget add source $SOURCE_URL --name $SOURCE_NAME --username az --password ${{ secrets.azureToken }} --store-password-in-clear-text
}
shell: pwsh
- name: Enable Skyline Azure Private NuGet Registry
env:
AZURE_TOKEN_EXISTS: ${{ secrets.azureToken }}
if: env.AZURE_TOKEN_EXISTS != null && inputs.owner == 'SkylineCommunications'
run: |
$SOURCE_NAME="PrivateAzureNuGets"
$SOURCE_URL="https://pkgs.dev.azure.com/skyline-cloud/_packaging/skyline-private-nugets/nuget/v3/index.json"
# Check if the source exists. If it does, update it.
if (dotnet nuget list source | Select-String -Pattern $SOURCE_NAME) {
Write-Host "Updating existing source $SOURCE_NAME."
dotnet nuget update source $SOURCE_NAME --source $SOURCE_URL --username az --password ${{ secrets.azureToken }} --store-password-in-clear-text
} else {
Write-Host "Adding new source $SOURCE_NAME."
dotnet nuget add source $SOURCE_URL --name $SOURCE_NAME --username az --password ${{ secrets.azureToken }} --store-password-in-clear-text
}
shell: pwsh
- name: NuGet restore solution
run: dotnet restore "${{ steps.findSlnFile.outputs.solutionFilePath }}"
- name: Install .NET Tools
run: |
dotnet tool install -g Skyline.DataMiner.CICD.Tools.Packager --version 2.0.*
- name: Create package name
id: packageName
run: |
tempName="${{ inputs.repository }}"
echo name=${tempName//[\"\/\\<>|:*?]/_} >> $GITHUB_OUTPUT
shell: bash
- name: Create dmapp package
if: inputs.referenceType == 'tag'
run: dataminer-package-create dmapp "${{ github.workspace }}" --type automation --version ${{ inputs.referenceName }} --output "${{ github.workspace }}" --name "${{ steps.packageName.outputs.name }}"
- name: Create dmapp package
if: inputs.referenceType != 'tag'
run: dataminer-package-create dmapp "${{ github.workspace }}" --type automation --build-number ${{ inputs.runNumber }} --output "${{ github.workspace }}" --name "${{ steps.packageName.outputs.name }}"
- uses: actions/upload-artifact@v4
with:
name: DataMiner Installation Package
path: "${{ github.workspace }}/${{ steps.packageName.outputs.name }}.dmapp"
artifact_creation_registration:
name: Artifact Registration and Upload
if: inputs.referenceType == 'tag'
runs-on: ubuntu-latest
needs: [validate_skyline_quality_gate,artifact_creation]
env:
result-artifact-id: none
outputs:
artifact-id: ${{ env.result-artifact-id }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Find branch
id: findBranch
run: |
#!/bin/bash
set -e # Exit immediately if a command exits with a non-zero status.
# Capture the branches containing the tag and process them
branches="$(git branch --contains tags/${{ inputs.referenceName }} -r | grep 'origin/' | grep -vE '.*/.*/' | sed 's#origin/##' | paste -sd ",")"
# Append to GitHub Actions output
echo "branch=${branches}" >> $GITHUB_OUTPUT
shell: bash
- name: Target Branch
id: showResult
run: echo "${{ steps.findBranch.outputs.branch }}"
- name: Retrieve Installation Package
id: retrieveInstallationPackage
uses: actions/download-artifact@v4
with:
name: DataMiner Installation Package
path: _DataMinerInstallationPackage
- name: Find Installation package
id: findInstallationPackage
run: |
IFS=$'\n'
echo dmappPackageName=$(find _DataMinerInstallationPackage -type f -name '*.dmapp') >> $GITHUB_OUTPUT
echo $(find _DataMinerInstallationPackage -type f -name '*.dmapp')
unset IFS
shell: bash
- name: Install .NET Tools
run: |
dotnet tool install -g Skyline.DataMiner.CICD.Tools.CatalogUpload --version 2.0.2
- name: Upload to Catalog
id: uploadToCatalog
run: echo "id=$(dataminer-catalog-upload with-registration --path-to-artifact "${{ steps.findInstallationPackage.outputs.dmappPackageName }}" --uri-sourcecode "${{ github.server_url }}/${{ github.repository }}" --artifact-version ${{ inputs.referenceName }} --branch "${{ steps.findBranch.outputs.branch }}" --dm-catalog-token ${{ secrets.api-key }})" --release-notes "${{ github.server_url }}/${{ github.repository }}/releases/tag/${{ inputs.referenceName }}" >> $GITHUB_OUTPUT
- name: (Release) Set artifact Id
run: echo "result-artifact-id=${{ steps.uploadToCatalog.outputs.id }}" >> $GITHUB_ENV