-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
108 lines (104 loc) · 3.01 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
variables:
buildConfiguration: 'Debug'
netSdkVersion: '8.x'
resultsDirectoryPath: 'test/Atata.WebDriverSetup.IntegrationTests/bin/$(buildConfiguration)/net8.0/results'
jobs:
- job: BuildAndRunCodeAnalysis
displayName: Build and run code analysis
pool:
vmImage: windows-latest
steps:
- task: UseDotNet@2
displayName: Set up .NET SDK
inputs:
version: $(netSdkVersion)
- task: DotNetCoreCLI@2
displayName: Build solution with code analysis
inputs:
command: build
projects: '**/*.sln'
arguments: -c $(buildConfiguration) -warnaserror
- job: RunTestsOnWindows
displayName: Run tests on Windows
pool:
vmImage: windows-latest
steps:
- task: UseDotNet@2
displayName: Set up .NET SDK
inputs:
version: $(netSdkVersion)
- task: DotNetCoreCLI@2
displayName: Build test projects
inputs:
command: build
projects: '**/*Tests.csproj'
arguments: -c $(buildConfiguration) -p:RunAnalyzers=false
- task: DotNetCoreCLI@2
displayName: Run tests
timeoutInMinutes: 5
inputs:
command: test
projects: '**/*Tests.csproj'
arguments: -c $(buildConfiguration) -s "azure-pipelines.runsettings" --no-build
- task: PublishPipelineArtifact@1
displayName: Publish test results
condition: succeededOrFailed()
inputs:
artifactName: Windows test results
targetPath: $(resultsDirectoryPath)
- job: RunTestsOnLinux
displayName: Run tests on Linux
pool:
vmImage: ubuntu-latest
steps:
- task: UseDotNet@2
displayName: Set up .NET SDK
inputs:
version: $(netSdkVersion)
- task: DotNetCoreCLI@2
displayName: Build test projects
inputs:
command: build
projects: '**/*Tests.csproj'
arguments: -c $(buildConfiguration) -p:RunAnalyzers=false
- task: DotNetCoreCLI@2
displayName: Run tests
timeoutInMinutes: 5
inputs:
command: test
projects: '**/*Tests.csproj'
arguments: -c $(buildConfiguration) -s "azure-pipelines.runsettings" --no-build
- task: PublishPipelineArtifact@1
displayName: Publish test results
condition: succeededOrFailed()
inputs:
artifactName: Linux test results
targetPath: $(resultsDirectoryPath)
- job: RunTestsOnMacOS
displayName: Run tests on macOS
pool:
vmImage: macOS-latest
steps:
- task: UseDotNet@2
displayName: Set up .NET SDK
inputs:
version: $(netSdkVersion)
- task: DotNetCoreCLI@2
displayName: Build test projects
inputs:
command: build
projects: '**/*Tests.csproj'
arguments: -c $(buildConfiguration) -p:RunAnalyzers=false
- task: DotNetCoreCLI@2
displayName: Run tests
timeoutInMinutes: 5
inputs:
command: test
projects: '**/*Tests.csproj'
arguments: -c $(buildConfiguration) -s "azure-pipelines.runsettings" --no-build
- task: PublishPipelineArtifact@1
displayName: Publish test results
condition: succeededOrFailed()
inputs:
artifactName: macOS test results
targetPath: $(resultsDirectoryPath)