Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tools/ci_build/github/azure-pipelines/templates/py-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ jobs:
submodules: none

- template: set-nightly-build-option-variable-step.yml
- template: setup-feeds-and-python-steps.yml
parameters:
architecture: ${{ parameters.arch }}

- template: get-docker-image-steps.yml
parameters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ steps:
condition: ne('${{ parameters.architecture }}', 'aarch64')
inputs:
versionSpec: ${{ parameters.versionSpec }}
${{ if ne(parameters.architecture, '') }}:
${{ if eq(parameters.architecture, 'x86_64') }}:
architecture: 'x64'
${{ elseif ne(parameters.architecture, '') }}:
architecture: ${{ parameters.architecture }}

- task: PowerShell@2
Expand Down
Loading