We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24bce88 commit 2446816Copy full SHA for 2446816
eng/pipelines/templates/jobs/live.tests.yml
@@ -84,7 +84,12 @@ jobs:
84
85
pool:
86
name: $(Pool)
87
- vmImage: $(OSVmImage)
+ # 1es pipeline templates converts `image` to demands: ImageOverride under the hood
88
+ # which is incompatible with image selection in the default non-1es hosted pools
89
+ ${{ if eq(parameters.OSName, 'macOS' }}:
90
+ vmImage: $(OSVmImage)
91
+ ${{ else }}:
92
+ image: $(OSVmImage)
93
os: ${{ parameters.OSName }}
94
95
${{ if eq(parameters.UsePlatformContainer, 'true') }}:
0 commit comments