From 2694afb0cd7eec1b97d898081910bdbbf074da2f Mon Sep 17 00:00:00 2001 From: xumia <59720581+xumia@users.noreply.github.com> Date: Fri, 23 Apr 2021 12:56:09 +0800 Subject: [PATCH] [ci]: Fix official build not existing issue (#7408) When submitting a new official build for broadcom, vs, it prompts a error message, which says the job is not defined. It was caused by the default option "[]", which is not empty, it is used as the jobGroups parameter. --- .azure-pipelines/azure-pipelines-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/azure-pipelines-build.yml b/.azure-pipelines/azure-pipelines-build.yml index 37d5463ffc76..68ddd191186f 100644 --- a/.azure-pipelines/azure-pipelines-build.yml +++ b/.azure-pipelines/azure-pipelines-build.yml @@ -15,7 +15,7 @@ parameters: default: [] - name: 'jobGroups' type: object - default: [] + default: '' jobs: - template: azure-pipelines-image-template.yml