mirror of https://github.com/dotnet/runtime
25 lines
747 B
YAML
25 lines
747 B
YAML
parameters:
|
|
distroRid: null
|
|
image: null
|
|
outputRidArg: ''
|
|
packageStepDescription: null
|
|
packagingArgs: ''
|
|
subsetArg: ''
|
|
|
|
steps:
|
|
- script: |
|
|
set -x
|
|
df -h
|
|
$(DockerRunMSBuild) ${{ parameters.image }} $(BuildScript) \
|
|
--ci \
|
|
${{ parameters.subsetArg }} \
|
|
/p:UsePrebuiltPortableBinariesForInstallers=true \
|
|
$(PackagePortableBitsArgs) \
|
|
/p:GenerateProjectInstallers=true \
|
|
${{ parameters.packagingArgs }} \
|
|
$(CommonMSBuildArgs) \
|
|
${{ parameters.outputRidArg }} \
|
|
$(LiveOverridePathArgs) \
|
|
/bl:artifacts/log/$(_BuildConfig)/msbuild.${{ parameters.distroRid }}.installers.binlog
|
|
displayName: Package ${{ parameters.packageStepDescription }} - ${{ parameters.distroRid }}
|