File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ stages:
52
52
jobs :
53
53
- template : azure-pipelines/test-matrix.yml
54
54
parameters :
55
+ os : linux
55
56
# Prefer the dotnet from the container.
56
57
dotnetVersion : ' '
57
58
testVSCodeVersion : $(testVSCodeVersion)
@@ -67,6 +68,7 @@ stages:
67
68
jobs :
68
69
- template : azure-pipelines/test-matrix.yml
69
70
parameters :
71
+ os : linux
70
72
# Prefer the dotnet from the container.
71
73
dotnetVersion : ' '
72
74
testVSCodeVersion : $(testVSCodeVersion)
@@ -82,6 +84,7 @@ stages:
82
84
jobs :
83
85
- template : azure-pipelines/test-matrix.yml
84
86
parameters :
87
+ os : windows
85
88
dotnetVersion : $(defaultDotnetVersion)
86
89
testVSCodeVersion : $(testVSCodeVersion)
87
90
pool :
@@ -94,6 +97,7 @@ stages:
94
97
jobs :
95
98
- template : azure-pipelines/test-matrix.yml
96
99
parameters :
100
+ os : macos
97
101
dotnetVersion : $(defaultDotnetVersion)
98
102
testVSCodeVersion : $(testVSCodeVersion)
99
103
pool :
Original file line number Diff line number Diff line change 1
1
parameters :
2
+ - name : os
3
+ type : string
2
4
- name : pool
3
5
type : object
4
6
- name : containerName
19
21
UnitTests :
20
22
npmCommand : test:unit
21
23
isIntegration : false
22
- CSharpIntegrationTests :
23
- npmCommand : test:integration:csharp
24
- isIntegration : true
24
+ ${{ if ne(parameters.os, 'windows') }} :
25
+ CSharpIntegrationTests :
26
+ npmCommand : test:integration:csharp
27
+ isIntegration : true
25
28
DevKitTests :
26
29
npmCommand : test:integration:devkit
27
30
isIntegration : true
You can’t perform that action at this time.
0 commit comments