From 15556c492d362f34beaac742317de9727d5a65d8 Mon Sep 17 00:00:00 2001 From: Changming Sun Date: Thu, 24 Oct 2024 19:10:30 -0700 Subject: [PATCH] Use a private PIP feed in 1ES pipeline (#22590) --- .../github/azure-pipelines/templates/windowsai-steps.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/ci_build/github/azure-pipelines/templates/windowsai-steps.yml b/tools/ci_build/github/azure-pipelines/templates/windowsai-steps.yml index 6b492ad951..9d47ae65a3 100644 --- a/tools/ci_build/github/azure-pipelines/templates/windowsai-steps.yml +++ b/tools/ci_build/github/azure-pipelines/templates/windowsai-steps.yml @@ -24,11 +24,16 @@ jobs: - task: UsePythonVersion@0 inputs: - versionSpec: '3.9' + versionSpec: '3.12' addToPath: true ${{ if eq(parameters.BuildArch, 'x86') }}: architecture: 'x86' + - task: PipAuthenticate@1 + displayName: 'Pip Authenticate' + inputs: + artifactFeeds: 'PublicPackages/ORT-Nightly' + - template: telemetry-steps.yml - task: NuGetCommand@2