Skip to content

Commit 3ae95db

Browse files
authored
Fix passing targetRID into sourcebuild job (#106285)
I noticed we weren't actually passing the `/p:TargetRid` parameter into the sourcebuild jobs because we used the wrong casing for the yml variable, it needs to be `targetRID` instead of `targetRid`.
1 parent ea9edef commit 3ae95db

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

eng/pipelines/global-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ extends:
126126
parameters:
127127
platforms:
128128
- name: Linux_x64
129-
targetRid: linux-x64
129+
targetRID: linux-x64
130130
container: SourceBuild_linux_x64

eng/pipelines/runtime-official.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ extends:
574574
parameters:
575575
platforms:
576576
- name: Linux_x64
577-
targetRid: linux-x64
577+
targetRID: linux-x64
578578
container: SourceBuild_linux_x64
579579

580580
#

eng/pipelines/runtime.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1857,11 +1857,11 @@ extends:
18571857
parameters:
18581858
platforms:
18591859
- name: CentOS8
1860-
targetRid: centos.8-x64
1860+
targetRID: centos.8-x64
18611861
nonPortable: true
18621862
container: SourceBuild_centos_x64
18631863
- name: NonexistentRID
18641864
baseOS: linux
1865-
targetRid: banana.24-x64
1865+
targetRID: banana.24-x64
18661866
nonPortable: true
18671867
container: SourceBuild_centos_x64

0 commit comments

Comments
 (0)