From 6dee23142a45e51f806cd665f351095f9b7e2fba Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 31 May 2024 16:19:55 +0200 Subject: [PATCH] [devops] Don't fail the build if the 'Post Debug output' job fails. (#20660) --- tools/devops/automation/templates/tests/publish-results.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/devops/automation/templates/tests/publish-results.yml b/tools/devops/automation/templates/tests/publish-results.yml index f9c3316fdd..1b721b28c4 100644 --- a/tools/devops/automation/templates/tests/publish-results.yml +++ b/tools/devops/automation/templates/tests/publish-results.yml @@ -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: |