We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82d0268 commit 5cc9719Copy full SHA for 5cc9719
eng/common/templates/steps/source-build.yml
@@ -63,6 +63,11 @@ steps:
63
targetRidArgs='/p:TargetRid=${{ parameters.platform.targetRID }}'
64
fi
65
66
+ runtimeOsArgs=
67
+ if [ '${{ parameters.platform.runtimeOS }}' != '' ]; then
68
+ runtimeOsArgs='/p:RuntimeOS=${{ parameters.platform.runtimeOS }}'
69
+ fi
70
+
71
publishArgs=
72
if [ '${{ parameters.platform.skipPublishValidation }}' != 'true' ]; then
73
publishArgs='--publish'
@@ -75,6 +80,7 @@ steps:
75
80
$internalRuntimeDownloadArgs \
76
81
$internalRestoreArgs \
77
82
$targetRidArgs \
83
+ $runtimeOsArgs \
78
84
/p:SourceBuildNonPortable=${{ parameters.platform.nonPortable }} \
79
85
/p:ArcadeBuildFromSource=true
86
displayName: Build
0 commit comments