99variables :
1010 solution : ' **/*.sln'
1111 configuration : ' Debug'
12+ nugetVersion : ' 99.99.99-test'
13+ binariesVersion : ' 99.99.99'
14+ oopWorkerSupportedExtensionVersion : ' 99.99.99-test'
1215
1316stages :
1417- stage : Build
1518 displayName : ' PR Validation'
1619
1720 jobs :
18- - job : BuildTest
19- displayName : ' Build and Test on'
20-
21- # Verifies cross-platform build and test
22- strategy :
23- matrix :
24- mac :
25- imageName : ' macos-latest'
26- testServer : ' '
27- windows :
28- imageName : ' windows-latest'
29- testServer : ' (LocalDb)\MSSQLLocalDB'
30- linux :
31- imageName : ' ubuntu-latest'
32- testServer : ' '
33-
21+ - job : Mac
22+ timeoutInMinutes : 90
3423 pool :
35- vmImage : ' $(imageName)'
36-
24+ vmImage : macos-latest
25+ workspace :
26+ clean : all
27+ steps :
28+ - template : ' template-steps-build-test.yml'
29+ parameters :
30+ solution : ' $(solution)'
31+ configuration : ' $(configuration)'
32+ testServer : ' localhost'
33+ nugetVersion : ' $(nugetVersion)'
34+ binariesVersion : ' $(binariesVersion)'
35+ oopWorkerSupportedExtensionVersion : ' $(oopWorkerSupportedExtensionVersion)'
36+ - job : Linux
37+ timeoutInMinutes : 90
38+ pool :
39+ vmImage : ubuntu-latest
40+ workspace :
41+ clean : all
42+ steps :
43+ - template : ' template-steps-build-test.yml'
44+ parameters :
45+ solution : ' $(solution)'
46+ configuration : ' $(configuration)'
47+ testServer : ' localhost'
48+ nugetVersion : ' $(nugetVersion)'
49+ binariesVersion : ' $(binariesVersion)'
50+ oopWorkerSupportedExtensionVersion : ' $(oopWorkerSupportedExtensionVersion)'
51+ - job : Windows
52+ timeoutInMinutes : 90
53+ pool :
54+ vmImage : windows-latest
3755 workspace :
3856 clean : all
39-
40- timeoutInMinutes : ' 90'
41-
4257 steps :
4358 - template : ' template-steps-build-test.yml'
4459 parameters :
4560 solution : ' $(solution)'
4661 configuration : ' $(configuration)'
47- nugetVersion : ' 99.99.99-test'
48- binariesVersion : ' 99.99.99'
49- oopWorkerSupportedExtensionVersion : ' 99.99.99-test'
62+ testServer : ' (LocalDb)\MSSQLLocalDB'
63+ nugetVersion : ' $(nugetVersion)'
64+ binariesVersion : ' $(binariesVersion)'
65+ oopWorkerSupportedExtensionVersion : ' $(oopWorkerSupportedExtensionVersion)'
0 commit comments