[devops] Don't fail the build if the 'Post Debug output' job fails. (#20660)

This commit is contained in:
Rolf Bjarne Kvinge 2024-05-31 16:19:55 +02:00 коммит произвёл GitHub
Родитель 5c5a4580ec
Коммит 6dee23142a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -59,8 +59,11 @@ stages:
vmImage: ubuntu-latest
variables:
VAR_DEPENDENCIES: $[ convertToJson(dependencies) ]
VAR_STAGE_DEPENDENCIES: $[ convertToJson(stageDependencies) ]
# Putting stageDependencies into a variable makes the step fail with:
# ##[error]An error occurred trying to start process '/home/vsts/agents/3.240.1/externals/node20_1/bin/node' with working directory '/home/vsts/work/1/s'. Argument list too long
# VAR_STAGE_DEPENDENCIES: $[ convertToJson(stageDependencies) ]
condition: always()
continueOnError: true
steps:
- checkout: none
- bash: |