Skip to content

Commit 9ed0ee3

Browse files
authored
The initial run of dotnet and/or cake hangs (#3152)
1 parent 21b03ef commit 9ed0ee3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

scripts/azure-templates-bootstrapper.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,11 @@ jobs:
319319
- ${{ if ne(parameters.skipSteps, 'true') }}:
320320
- ${{ if eq(parameters.docker, '') }}:
321321
- ${{ if eq(parameters.buildAgent.pool.os, 'windows') }}:
322+
- pwsh: dotnet cake --info
323+
displayName: Display all the Cake information
324+
condition: and(succeeded(), eq(variables['DOWNLOAD_EXTERNALS'], ''))
325+
retryCountOnTaskFailure: 1
326+
timeoutInMinutes: 5
322327
- pwsh: |
323328
Get-Content $PSCommandPath
324329
dotnet tool restore
@@ -334,6 +339,11 @@ jobs:
334339
retryCountOnTaskFailure: ${{ parameters.retryCount }}
335340
condition: and(succeeded(), eq(variables['DOWNLOAD_EXTERNALS'], ''))
336341
- ${{ if ne(parameters.buildAgent.pool.os, 'windows') }}:
342+
- bash: dotnet cake --info
343+
displayName: Display all the Cake information
344+
condition: and(succeeded(), eq(variables['DOWNLOAD_EXTERNALS'], ''))
345+
retryCountOnTaskFailure: 1
346+
timeoutInMinutes: 5
337347
- bash: |
338348
cat ${BASH_SOURCE[0]}
339349
dotnet tool restore

0 commit comments

Comments
 (0)