Skip to content

Commit 6907fb4

Browse files
committed
hopefully final fix for smoke test checks
1 parent f437263 commit 6907fb4

File tree

1 file changed

+9
-18
lines changed

1 file changed

+9
-18
lines changed

eng/pipelines/templates/jobs/smoke.tests.yml

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,18 @@ jobs:
4343
matrix:
4444
Python_310_Linux (AzureCloud):
4545
PythonVersion: '3.10'
46-
Pool: $(LINUXPOOL)
47-
OSVmImage: $(LINUXVMIMAGE)
4846
${{ if eq(parameters.Daily, true) }}:
4947
Python_39_Linux (AzureCloud):
5048
PythonVersion: '3.9'
51-
Pool: $(LINUXPOOL)
52-
OSVmImage: $(LINUXVMIMAGE)
5349

5450
pool:
55-
name: $(Pool)
56-
image: $(OSVmImage)
51+
name: $(LINUXPOOL)
52+
image: $(LINUXVMIMAGE)
5753
os: linux
5854

5955
variables:
6056
- template: /eng/pipelines/templates/variables/globals.yml
57+
- template: /eng/pipelines/templates/variables/image.yml
6158
- name: requirements
6259
${{ if eq(parameters.Daily, true) }}:
6360
value: $(Build.SourcesDirectory)/common/smoketest/requirements.txt
@@ -81,19 +78,16 @@ jobs:
8178
matrix:
8279
Python_310_Windows (AzureCloud):
8380
PythonVersion: '3.10'
84-
Pool: $(LINUXPOOL)
85-
OSVmImage: $(LINUXVMIMAGE)
8681
Python_39_Windows (AzureCloud):
8782
PythonVersion: '3.9'
88-
Pool: $(LINUXPOOL)
89-
OSVmImage: $(LINUXVMIMAGE)
9083

9184
pool:
92-
name: $(Pool)
93-
image: $(OSVmImage)
85+
name: $(WINDOWSPOOL)
86+
image: $(WINDOWSVMIMAGE)
9487
os: windows
9588
variables:
9689
- template: /eng/pipelines/templates/variables/globals.yml
90+
- template: /eng/pipelines/templates/variables/image.yml
9791
- name: requirements
9892
${{ if eq(parameters.Daily, true) }}:
9993
value: $(Build.SourcesDirectory)/common/smoketest/requirements.txt
@@ -115,20 +109,17 @@ jobs:
115109
matrix:
116110
Python_310_Mac (AzureCloud):
117111
PythonVersion: '3.10'
118-
Pool: $(MACPOOL)
119-
OSVmImage: $(MACVMIMAGE)
120112
Python_39_Mac (AzureCloud):
121113
PythonVersion: '3.9'
122-
Pool: $(MACPOOL)
123-
OSVmImage: $(MACVMIMAGE)
124114

125115
pool:
126-
name: $(Pool)
127-
vmImage: $(OSVmImage)
116+
name: $(MACPOOL)
117+
vmImage: $(MACVMIMAGE)
128118
os: macOS
129119

130120
variables:
131121
- template: /eng/pipelines/templates/variables/globals.yml
122+
- template: /eng/pipelines/templates/variables/image.yml
132123
- name: requirements
133124
${{ if eq(parameters.Daily, true) }}:
134125
value: $(Build.SourcesDirectory)/common/smoketest/requirements.txt

0 commit comments

Comments
 (0)