This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
azure-pipelines.yml
84 lines (68 loc) · 2.07 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
80
81
82
83
84
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
- main
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
jobs:
#- job: 'IntegrationTests'
# pool:
# name: IntegrationTestPool # name of the pool to run this job in
#steps:
#- task: DotNetCoreCLI@2
# inputs:
# command: 'build'
# projects: '$(solution)'
# configuration: '$(buildConfiguration)'
#- task: Bash@3
# inputs:
# targetType: 'inline'
# script: 'az login --identity'
# noProfile: false
# noRc: false
# - task: DotNetCoreCLI@2
# inputs:
# command: 'test'
# projects: '**/Diagnostics.Tests.Integration.*.csproj'
# arguments: '--configuration $(buildConfiguration)'
- job: 'UnitTestAndPublish'
pool:
vmImage: 'windows-latest'
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk step'
inputs:
packageType: sdk
version: 3.1.x
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: NuGetAuthenticate@0
inputs:
nuGetServiceConnections: 'AzureGenevaMonitoring'
- task: DotNetCoreCLI@2
displayName: 'Restore Packages'
inputs:
command: 'restore'
projects: '**/Diagnostics.Tests.csproj'
feedsToUse: 'select'
vstsFeed: 'b2430cf7-78c0-440a-aa4a-a25665c5778e'
- task: DotNetCoreCLI@2
displayName: 'Run Tests'
inputs:
command: 'test'
projects: '**/Diagnostics.Tests.csproj'
arguments: '--configuration $(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: "Publish"
inputs:
command: publish
publishWebProjects: True
arguments: '--configuration $(BuildConfiguration) --output $(Build.ArtifactStagingDirectory)'
zipAfterPublish: True
- task: PublishBuildArtifacts@1
inputs:
pathtoPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: backend-drop1