From: Wes Haggard Date: Wed, 21 Feb 2018 22:53:34 +0000 (-0800) Subject: Remove cli-deps feed and publishing of deb-tool X-Git-Tag: submit/tizen/20210909.063632~11032^2~866^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b486a3477c545d9b326a8167b8af83713bd26828;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Remove cli-deps feed and publishing of deb-tool cli-deps feed has been removed so cleaning up that feed as well as removing the publishing of the deb-tool that published to it. Commit migrated from https://github.com/dotnet/core-setup/commit/7b00501c598504836dd6fbabe9b3b604a213cdd9 --- diff --git a/src/installer/buildpipeline/Core-Setup-Linux-BT.json b/src/installer/buildpipeline/Core-Setup-Linux-BT.json index 793f5c9..9bca34b 100644 --- a/src/installer/buildpipeline/Core-Setup-Linux-BT.json +++ b/src/installer/buildpipeline/Core-Setup-Linux-BT.json @@ -279,7 +279,7 @@ }, "inputs": { "filename": "docker", - "arguments": "run --rm $(DockerCommonRunArgs_Ubuntu1404) $(PB_GitDirectory)/Tools/msbuild.sh $(PB_GitDirectory)/publish/publish.proj /p:PublishType=$(PB_PublishType) /p:PublishDebToolToFeed=true /p:CliNuGetFeedUrl=$(CLI_NUGET_FEED_URL) /p:CliNuGetApiKey=$(CLI_NUGET_API_KEY) $(DistroSpecificMSBuildArguments) $(DistroSpecificMSBuildPublishArgs)", + "arguments": "run --rm $(DockerCommonRunArgs_Ubuntu1404) $(PB_GitDirectory)/Tools/msbuild.sh $(PB_GitDirectory)/publish/publish.proj /p:PublishType=$(PB_PublishType) $(DistroSpecificMSBuildArguments) $(DistroSpecificMSBuildPublishArgs)", "workingFolder": "", "failOnStandardError": "false" } @@ -1136,16 +1136,6 @@ "PB_AdditionalMSBuildArguments": { "value": "" }, - "CLI_NUGET_FEED_URL": { - "value": "https:%2F%2Fdotnet.myget.org/F/cli-deps/api/v2/package" - }, - "CLI_NUGET_SYMBOLS_FEED_URL": { - "value": "https:%2F%2Fdotnet.myget.org/F/cli-deps/symbols/api/v2/package" - }, - "CliNuGetApiKey": { - "value": null, - "isSecret": true - }, "DistroSpecificMSBuildArguments": { "value": "/flp:v=diag /clp:v=detailed /p:TargetArchitecture=$(PB_TargetArchitecture) /p:PortableBuild=false /p:ConfigurationGroup=$(BuildConfiguration) /p:OSGroup=Linux /p:OfficialBuildId=$(OfficialBuildId)" }, diff --git a/src/installer/publish/publish.proj b/src/installer/publish/publish.proj index 7a0b0da..599dc60 100644 --- a/src/installer/publish/publish.proj +++ b/src/installer/publish/publish.proj @@ -24,7 +24,6 @@ $(BuildDependsOn); PublishDebFilesToDebianRepo; - PublishDebToolPackageToFeed; PublishFinalOutput; @@ -282,19 +281,6 @@ Overwrite="$(OverwriteOnPublish)"/> - - - - - - - $(DotnetToolCommand) nuget push --source $(CliNuGetFeedUrl) --api-key $(CliNuGetApiKey) --timeout $(NuGetPushTimeoutSeconds) - - - - diff --git a/tools-local/scripts/dockerrun.sh b/tools-local/scripts/dockerrun.sh index 4d5a3d8..e12467d 100644 --- a/tools-local/scripts/dockerrun.sh +++ b/tools-local/scripts/dockerrun.sh @@ -113,9 +113,6 @@ docker run $INTERACTIVE -t --rm --sig-proxy=true \ -e NUGET_SYMBOLS_FEED_URL \ -e NUGET_API_KEY \ -e GITHUB_PASSWORD \ - -e CLI_NUGET_FEED_URL \ - -e CLI_NUGET_SYMBOLS_FEED_URL \ - -e CLI_NUGET_API_KEY \ $DOTNET_BUILD_CONTAINER_TAG \ $BUILD_COMMAND "$@"