@@ -43,21 +43,18 @@ jobs:
43
43
matrix :
44
44
Python_310_Linux (AzureCloud) :
45
45
PythonVersion : ' 3.10'
46
- Pool : $(LINUXPOOL)
47
- OSVmImage : $(LINUXVMIMAGE)
48
46
${{ if eq(parameters.Daily, true) }} :
49
47
Python_39_Linux (AzureCloud) :
50
48
PythonVersion : ' 3.9'
51
- Pool : $(LINUXPOOL)
52
- OSVmImage : $(LINUXVMIMAGE)
53
49
54
50
pool :
55
- name : $(Pool )
56
- image : $(OSVmImage )
51
+ name : $(LINUXPOOL )
52
+ image : $(LINUXVMIMAGE )
57
53
os : linux
58
54
59
55
variables :
60
56
- template : /eng/pipelines/templates/variables/globals.yml
57
+ - template : /eng/pipelines/templates/variables/image.yml
61
58
- name : requirements
62
59
${{ if eq(parameters.Daily, true) }} :
63
60
value : $(Build.SourcesDirectory)/common/smoketest/requirements.txt
@@ -81,19 +78,16 @@ jobs:
81
78
matrix :
82
79
Python_310_Windows (AzureCloud) :
83
80
PythonVersion : ' 3.10'
84
- Pool : $(LINUXPOOL)
85
- OSVmImage : $(LINUXVMIMAGE)
86
81
Python_39_Windows (AzureCloud) :
87
82
PythonVersion : ' 3.9'
88
- Pool : $(LINUXPOOL)
89
- OSVmImage : $(LINUXVMIMAGE)
90
83
91
84
pool :
92
- name : $(Pool )
93
- image : $(OSVmImage )
85
+ name : $(WINDOWSPOOL )
86
+ image : $(WINDOWSVMIMAGE )
94
87
os : windows
95
88
variables :
96
89
- template : /eng/pipelines/templates/variables/globals.yml
90
+ - template : /eng/pipelines/templates/variables/image.yml
97
91
- name : requirements
98
92
${{ if eq(parameters.Daily, true) }} :
99
93
value : $(Build.SourcesDirectory)/common/smoketest/requirements.txt
@@ -115,20 +109,17 @@ jobs:
115
109
matrix :
116
110
Python_310_Mac (AzureCloud) :
117
111
PythonVersion : ' 3.10'
118
- Pool : $(MACPOOL)
119
- OSVmImage : $(MACVMIMAGE)
120
112
Python_39_Mac (AzureCloud) :
121
113
PythonVersion : ' 3.9'
122
- Pool : $(MACPOOL)
123
- OSVmImage : $(MACVMIMAGE)
124
114
125
115
pool :
126
- name : $(Pool )
127
- vmImage : $(OSVmImage )
116
+ name : $(MACPOOL )
117
+ vmImage : $(MACVMIMAGE )
128
118
os : macOS
129
119
130
120
variables :
131
121
- template : /eng/pipelines/templates/variables/globals.yml
122
+ - template : /eng/pipelines/templates/variables/image.yml
132
123
- name : requirements
133
124
${{ if eq(parameters.Daily, true) }} :
134
125
value : $(Build.SourcesDirectory)/common/smoketest/requirements.txt
0 commit comments