From 4d727ad8ef695108d67270f34152ca7dca902ea5 Mon Sep 17 00:00:00 2001 From: Jan Vorlicek Date: Wed, 1 Nov 2017 10:51:14 -0700 Subject: [PATCH] Fix Alpine and RHEL official builds (dotnet/core-setup#3378) * Fix Alpine and RHEL official builds I have broken the RHEL build by my recent change that was supposed to enable Alpine official builds. The Alpine build didn't work either since there was a recent change that modified the way we specify the distro RID and I have missed that. Commit migrated from https://github.com/dotnet/core-setup/commit/e0f6d9548161011fafa3947e41b736d31e67f8d9 --- src/installer/buildpipeline/pipeline.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/installer/buildpipeline/pipeline.json b/src/installer/buildpipeline/pipeline.json index 270877d..e4b846d 100644 --- a/src/installer/buildpipeline/pipeline.json +++ b/src/installer/buildpipeline/pipeline.json @@ -30,7 +30,7 @@ } }, { - "Name": "Core-Setup-Linux-BT", + "Name": "Core-Setup-Linux-Arm-BT", "Parameters": { "PB_DockerTag": "centos-6-376e1a3-20174311014331", "PB_TargetArchitecture": "x64", @@ -45,12 +45,12 @@ } }, { - "Name": "Core-Setup-Linux-BT", + "Name": "Core-Setup-Linux-Arm-BT", "Parameters": { - "PB_DistroRid": "alpine.3.6-x64", "PB_DockerTag": "alpine-3.6-3148f11-20171119021156", "PB_TargetArchitecture": "x64", - "PB_AdditionalBuildArguments":"-TargetArchitecture=x64 -DistroRid=alpine.3.6-x64 -PortableBuild=false -strip-symbols", + "PB_AdditionalBuildArguments":"-TargetArchitecture=x64 -PortableBuild=false -strip-symbols", + "PB_AdditionalMSBuildArguments":"/p:OutputRid=alpine.3.6-x64", "PB_PortableBuild": "false" }, "ReportingParameters": { -- 2.7.4