From df74f95c4512c9621bd73d9a177fdbf02730e478 Mon Sep 17 00:00:00 2001 From: Scott Beddall <45376673+scbedd@users.noreply.github.com> Date: Fri, 17 Jan 2025 16:06:43 -0800 Subject: [PATCH] Resolve the failed package lookup (#39264) * ensure that alpha packages can be resolved from nightly analyze stage --- eng/pipelines/templates/steps/analyze.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eng/pipelines/templates/steps/analyze.yml b/eng/pipelines/templates/steps/analyze.yml index f87cc359ef3b..cca70d24845b 100644 --- a/eng/pipelines/templates/steps/analyze.yml +++ b/eng/pipelines/templates/steps/analyze.yml @@ -6,6 +6,7 @@ parameters: TestPipeline: false VerifyAutorest: false GenerateApiReviewForManualOnly: false + DevFeedName: 'public/azure-sdk-for-python' # Please use `$(TargetingString)` to refer to the python packages glob string. This variable is set from resolve-package-targeting.yml. steps: @@ -19,6 +20,11 @@ steps: ServiceDirectory: "template" TestPipeline: ${{ parameters.TestPipeline }} + - ${{if eq(variables['System.TeamProject'], 'internal') }}: + - template: ../steps/auth-dev-feed.yml + parameters: + DevFeedName: ${{ parameters.DevFeedName }} + - task: PythonScript@0 displayName: 'Set Tox Environment Skips' condition: succeededOrFailed()