You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a handful of ASP.NET Core projects in a solution filter. In each project file I define some specific environment variables and repository properties.
When I run dotnet publish <solution filter> --runtime linux-x64 /t:PublishContainer locally I see the services built, containers created, and published to my local container repository. When I run the same command as part of my AzDo pipeline then I see some different behavior. On occasion the pipeline run will succeed and publish the containers to the specified registry. On other occasions the pipeline run will not succeed, instead rebuilding the same batch of projects indefinitely. Eventually the pipeline job times out and the run is cancelled.
The biggest challenge is the complete lack of debugging information. Is there a way to figure out why the dotnet publish command is looping indefinitely? Is there some logging information that can be enable to show what the container build is attempting to do?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have a handful of ASP.NET Core projects in a solution filter. In each project file I define some specific environment variables and repository properties.
I define some shared properties in Directory.Build.props.
When I run
dotnet publish <solution filter> --runtime linux-x64 /t:PublishContainer
locally I see the services built, containers created, and published to my local container repository. When I run the same command as part of my AzDo pipeline then I see some different behavior. On occasion the pipeline run will succeed and publish the containers to the specified registry. On other occasions the pipeline run will not succeed, instead rebuilding the same batch of projects indefinitely. Eventually the pipeline job times out and the run is cancelled.The biggest challenge is the complete lack of debugging information. Is there a way to figure out why the
dotnet publish
command is looping indefinitely? Is there some logging information that can be enable to show what the container build is attempting to do?Beta Was this translation helpful? Give feedback.
All reactions