From 00d989f581722174b7d7a1ed54d99e716f47208f Mon Sep 17 00:00:00 2001 From: Brandon Siegel <96068+bsiegel@users.noreply.github.com> Date: Fri, 9 Oct 2020 13:00:16 -0700 Subject: [PATCH] Fix x86 builds accidentally building as x64 instead --- .azure-pipelines/use-python-version.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/use-python-version.yml b/.azure-pipelines/use-python-version.yml index 84e2bea83..26ce634c8 100644 --- a/.azure-pipelines/use-python-version.yml +++ b/.azure-pipelines/use-python-version.yml @@ -1,5 +1,6 @@ parameters: - versionSpec: '' + versionSpec: '3.x' + architecture: 'x64' steps: # use python 3.8 for tooling. packaging. platform. @@ -22,4 +23,5 @@ steps: - task: UsePythonVersion@0 displayName: "Use Python $(PythonVersion)" inputs: - versionSpec: ${{ parameters.versionSpec }} \ No newline at end of file + versionSpec: ${{ parameters.versionSpec }} + architecture: ${{ parameters.architecture }}