13
13
- job : smoke_test_eligibility
14
14
displayName : Check Smoke Test Eligibility
15
15
pool :
16
- name : azsdk-pool-mms-ubuntu-2004-general
17
- image : azsdk-pool-mms-ubuntu-2004-1espt
16
+ name : $(LINUXPOOL)
17
+ image : $(LINUXVMIMAGE)
18
18
os : linux
19
19
steps :
20
20
- ${{ if and(ne(variables['Skip.Release'], 'true'), ne(parameters.Artifact.skipPublishPackage, 'true')) }} :
@@ -41,23 +41,20 @@ jobs:
41
41
condition : and(succeeded(), eq(dependencies.smoke_test_eligibility.outputs['output_eligibility.RunSmokeTests'], true))
42
42
strategy :
43
43
matrix :
44
- Python_38_Linux (AzureCloud) :
45
- PythonVersion : ' 3.8'
46
- Pool : " azsdk-pool-mms-ubuntu-2004-general"
47
- OSVmImage : azsdk-pool-mms-ubuntu-2004-1espt
44
+ Python_310_Linux (AzureCloud) :
45
+ PythonVersion : ' 3.10'
48
46
${{ if eq(parameters.Daily, true) }} :
49
- Python_37_Linux (AzureCloud) :
50
- PythonVersion : ' 3.7'
51
- Pool : azsdk-pool-mms-ubuntu-2004-general
52
- OSVmImage : azsdk-pool-mms-ubuntu-2004-1espt
47
+ Python_39_Linux (AzureCloud) :
48
+ PythonVersion : ' 3.9'
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
@@ -79,21 +76,18 @@ jobs:
79
76
condition : and(succeeded(), eq(dependencies.smoke_test_eligibility.outputs['output_eligibility.RunSmokeTests'], true))
80
77
strategy :
81
78
matrix :
82
- Python_37_Windows (AzureCloud) :
83
- PythonVersion : ' 3.7'
84
- Pool : azsdk-pool-mms-win-2022-general
85
- OSVmImage : azsdk-pool-mms-win-2022-1espt
86
- Python_38_Windows (AzureCloud) :
87
- PythonVersion : ' 3.8'
88
- Pool : azsdk-pool-mms-win-2022-general
89
- OSVmImage : azsdk-pool-mms-win-2022-1espt
79
+ Python_310_Windows (AzureCloud) :
80
+ PythonVersion : ' 3.10'
81
+ Python_39_Windows (AzureCloud) :
82
+ PythonVersion : ' 3.9'
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
@@ -113,22 +107,19 @@ jobs:
113
107
condition : and(succeeded(), eq(dependencies.smoke_test_eligibility.outputs['output_eligibility.RunSmokeTests'], true))
114
108
strategy :
115
109
matrix :
116
- Python_37_Mac (AzureCloud) :
117
- PythonVersion : ' 3.7'
118
- Pool : Azure Pipelines
119
- OSVmImage : macos-latest
120
- Python_38_Mac (AzureCloud) :
121
- PythonVersion : ' 3.8'
122
- Pool : Azure Pipelines
123
- OSVmImage : macos-latest
110
+ Python_310_Mac (AzureCloud) :
111
+ PythonVersion : ' 3.10'
112
+ Python_39_Mac (AzureCloud) :
113
+ PythonVersion : ' 3.9'
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