Browse Source

Build: increase the NuGet push timeout to 15min (5min was too short for nativer providers)

pull/555/merge
Christoph Ruegg 8 years ago
parent
commit
7eacffdce8
  1. 2
      build/build-framework.fsx

2
build/build-framework.fsx

@ -365,7 +365,7 @@ let publishNuGet packageFiles =
let rec impl trials file =
trace ("NuGet Push: " + System.IO.Path.GetFileName(file) + ".")
try
let args = sprintf """push "%s" -Source https://api.nuget.org/v3/index.json""" (FullName file)
let args = sprintf """push "%s" -Source https://api.nuget.org/v3/index.json -T 900""" (FullName file)
let result =
ExecProcess (fun info ->
info.FileName <- "packages/build/NuGet.CommandLine/tools/NuGet.exe"

Loading…
Cancel
Save