-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathazure-pipelines.yml
79 lines (69 loc) · 2.14 KB
/
azure-pipelines.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
# Copyright (c) .NET Foundation and Contributors
# See LICENSE file in the project root for full license information.
# The Pipeline is going to be triggered by a call to Azure DevOps REST API
# Manual trigger is always possible.
trigger: none
pr: none
# add nf-tools repo to resources (for Azure Pipelines templates)
resources:
repositories:
- repository: templates
type: github
name: nanoframework/nf-tools
endpoint: nanoframework
pool:
vmImage: 'windows-latest'
variables:
- group: sign-client-credentials
- name: DOTNET_NOLOGO
value: true
- name: buildPlatform
value: 'Any CPU'
- name: buildConfiguration
value: 'Release'
- name: solution
value: 'nanoFramework.Json.sln'
- name: nugetPackageName
value: 'nanoFramework.Json'
parameters:
- name: appComponents
displayName: List of capabilities to run the tests on
type: object
default:
- none
stages:
- stage: Build
displayName: 'Build'
jobs:
- job: Build
displayName: 'Build job'
pool:
# default is the following VM Image
vmImage: 'windows-latest'
steps:
# step from template @ nf-tools repo
# all build, update and publish steps
- template: azure-pipelines-templates/class-lib-build.yml@templates
parameters:
sonarCloudProject: 'nanoframework_lib-nanoFramework.Json'
runUnitTests: true
unitTestRunsettings: '$(System.DefaultWorkingDirectory)\.runsettings'
# step from template @ nf-tools repo
# report error
- template: azure-pipelines-templates/discord-webhook-task.yml@templates
parameters:
status: 'failure'
webhookUrl: '$(DiscordWebhook)'
message: ''
- task: PublishPipelineArtifact@1
displayName: Publish Pipeline Artifact copy
inputs:
path: '$(System.DefaultWorkingDirectory)'
artifactName: 'Artifacts'
- ${{ each appComponents in parameters.appComponents }}:
- ${{ if ne(appComponents, 'none') }}:
- template: test.yml
parameters:
appComponents: ${{ appComponents }}
unitTestRunsettings:
- 'UnitTestStream/nano.runsettings,UnitTestStream/bin/Release/NFUnitTest.dll'