Skip to content

Commit 3f86bf2

Browse files
committed
put release back to the original format
1 parent c13ed71 commit 3f86bf2

File tree

2 files changed

+200
-192
lines changed

2 files changed

+200
-192
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,12 @@ jobs:
6565

6666
pool:
6767
name: $(Pool)
68-
vmImage: $(OSVmImage)
68+
# 1es pipeline templates converts `image` to demands: ImageOverride under the hood
69+
# which is incompatible with image selection in the default non-1es hosted pools
70+
${{ if eq(parameters.OSName, 'macOS' }}:
71+
vmImage: $(OSVmImage)
72+
${{ else }}:
73+
image: $(OSVmImage)
6974
os: ${{ parameters.OSName }}
7075

7176
variables:

0 commit comments

Comments
 (0)