Updated usage of `pip` in the package build template. (#6223)

This commit is contained in:
Pawel Winogrodzki 2023-09-20 15:09:54 -07:00 коммит произвёл GitHub
Родитель 12a3deea7d
Коммит 678c1bcf37
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 6 добавлений и 10 удалений

Просмотреть файл

@ -103,6 +103,12 @@ steps:
parameters:
buildRepoRoot: ${{ parameters.buildRepoRoot }}
- ${{ if parameters.pipArtifactFeeds }}:
- task: PipAuthenticate@1
inputs:
artifactFeeds: "${{ parameters.pipArtifactFeeds }}"
displayName: "Authenticate to custom pip artifact feeds"
- ${{ if parameters.customToolchainArtifactName }}:
- task: DownloadPipelineArtifact@2
displayName: "Download toolchain"
@ -214,4 +220,3 @@ steps:
buildRepoRoot: ${{ parameters.buildRepoRoot }}
failOnTestFailures: ${{ parameters.failOnTestFailures }}
outputArtifactsFolder: ${{ parameters.outputArtifactsFolder }}
pipArtifactFeeds: ${{ parameters.pipArtifactFeeds }}

Просмотреть файл

@ -14,9 +14,6 @@ parameters:
type: string
default: "$(Build.ArtifactStagingDirectory)"
- name: pipArtifactFeeds
type: string
# Local constants. Can't use variables in a template without jobs or stages.
- name: reportFileName
type: string
@ -27,12 +24,6 @@ parameters:
default: "$(Agent.TempDirectory)"
steps:
- ${{ if parameters.pipArtifactFeeds }}:
- task: PipAuthenticate@1
inputs:
artifactFeeds: "${{ parameters.pipArtifactFeeds }}"
displayName: "Authenticate to custom pip artifact feeds"
- bash: |
pip3 install junit_xml
displayName: "Install Python dependencies"