diff options
author | 杨宇千 <crupest@outlook.com> | 2019-07-11 14:44:15 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-07-11 14:44:15 +0800 |
commit | 8a1b313bac0b5ce6604f1e59e3cabd6faca5c098 (patch) | |
tree | 9cf55c0aa001ccaef7bf786aa30a80bf7b6a922b | |
parent | cafcbde7529f7c1e4219344df9a404ecdb411aa5 (diff) | |
download | cru-8a1b313bac0b5ce6604f1e59e3cabd6faca5c098.tar.gz cru-8a1b313bac0b5ce6604f1e59e3cabd6faca5c098.tar.bz2 cru-8a1b313bac0b5ce6604f1e59e3cabd6faca5c098.zip |
...
-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: |