diff options
-rw-r--r-- | azure-pipelines.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 24e74df2..90a89d15 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,7 +21,12 @@ jobs: buildConfiguration: 'Release' steps: - - script: py -3 tools\win_build.py -a $(buildPlatform) -c $(buildConfiguration) + - task: UsePythonVersion@0 + inputs: + versionSpec: '3.x' + addToPath: true + + - script: python tools\win_build.py -a $(buildPlatform) -c $(buildConfiguration) - task: CopyFiles@2 inputs: |