-
Notifications
You must be signed in to change notification settings - Fork 510
Conversation
cc @schellap |
@dotnet-bot test this please |
@yishaigalatzer, can someone take a look from your team? NuGet v3 restore causes the below error consistently as part of build on our CI machines. This is blocking us from adopting v3 and the iterate on changes to CLI and CoreRT. I can share the ssh credentials to the dev.
|
This issue may be fixed in NuGet xplat 605 and up. There was a race case where restores were running in parallel and deleting all files in a shared the temp folder. A workaround for this would be to use dotnet restore |
@dotnet-bot test this please |
@@ -172,7 +172,7 @@ if "%__CleanBuild%"=="1" ( | |||
) | |||
|
|||
if not exist "%__DotNetCliPath%" ( | |||
for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy RemoteSigned "& "%__SourceDir%\scripts\install-cli.ps1" -installdir "%__RootBinDir%\tools" -version "1.0.0.000973""') do ( | |||
for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy RemoteSigned "& "%__SourceDir%\scripts\install-cli.ps1" -installdir "%__RootBinDir%\tools""') do ( | |||
echo "" > nul | |||
) | |||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jkotas could you please add above the :SetupManagedBuild
, should help in pinning LKG.
echo type "%__DotNetCliPath%\.version"
type "%__DotNetCliPath%\.version"
This PR contains rollback all fixes required to switch to live CLI build. We can use it to check whether all issues in live CLI build has been resolved.