From df4e4d9502b6a1dbcf387c6e7b72408cd10c3deb Mon Sep 17 00:00:00 2001 From: Paul <8560030+pwang347@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:40:09 -0700 Subject: [PATCH] Allow NOTICE fallback to complete in product builds (#330564) --- build/azure-pipelines/product-quality-checks.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/azure-pipelines/product-quality-checks.yml b/build/azure-pipelines/product-quality-checks.yml index beb730147ed..6e2a9602dfb 100644 --- a/build/azure-pipelines/product-quality-checks.yml +++ b/build/azure-pipelines/product-quality-checks.yml @@ -1,7 +1,8 @@ jobs: - job: Quality displayName: Quality Checks - timeoutInMinutes: 20 + # Leave enough time for NOTICE retries and the fallback path to finish. + timeoutInMinutes: 30 variables: - name: skipComponentGovernanceDetection value: true @@ -154,7 +155,7 @@ jobs: inputs: outputfile: $(Build.SourcesDirectory)/ThirdPartyNotices.generated.txt retryCountOnTaskFailure: 3 - timeoutInMinutes: 10 + timeoutInMinutes: 15 continueOnError: true condition: and(succeeded(), eq(lower(variables['VSCODE_CIBUILD']), 'false'))