Skip to content

Commit

Permalink
Fix passing targetRID into sourcebuild job (#106285)
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
akoeplinger authored Aug 13, 2024
1 parent ea9edef commit 3ae95db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eng/pipelines/global-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,5 +126,5 @@ extends:
parameters:
platforms:
- name: Linux_x64
targetRid: linux-x64
targetRID: linux-x64
container: SourceBuild_linux_x64
2 changes: 1 addition & 1 deletion eng/pipelines/runtime-official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ extends:
parameters:
platforms:
- name: Linux_x64
targetRid: linux-x64
targetRID: linux-x64
container: SourceBuild_linux_x64

#
Expand Down
4 changes: 2 additions & 2 deletions eng/pipelines/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1857,11 +1857,11 @@ extends:
parameters:
platforms:
- name: CentOS8
targetRid: centos.8-x64
targetRID: centos.8-x64
nonPortable: true
container: SourceBuild_centos_x64
- name: NonexistentRID
baseOS: linux
targetRid: banana.24-x64
targetRID: banana.24-x64
nonPortable: true
container: SourceBuild_centos_x64

0 comments on commit 3ae95db

Please sign in to comment.