This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 2 files changed +7
-20
lines changed
2 files changed +7
-20
lines changed Original file line number Diff line number Diff line change 49
49
PYTHON_ARCH : ' x64'
50
50
BITS : 64
51
51
52
- - template : azure/windows.yml
53
- parameters :
54
- name : windows2019
55
- vmImage : windows-2019
56
- matrix :
57
- py_3.9_32 :
58
- # Will use the latest up to 3.9.0
59
- PYTHON_VERSION : " '3.9.0-alpha - 3.9.0'"
60
- PYTHON_ARCH : " x86"
61
- BITS : 32
62
- py_3.9_64 :
63
- # Will use the latest up to 3.9.0
64
- PYTHON_VERSION : " '3.9.0-alpha - 3.9.0'"
65
- PYTHON_ARCH : ' x64'
66
- BITS : 64
67
-
68
-
69
52
- template : azure/posix.yml
70
53
parameters :
71
54
name : linux
@@ -146,5 +129,3 @@ jobs:
146
129
MB_PYTHON_VERSION : " 3.7"
147
130
py_3.8_64 :
148
131
MB_PYTHON_VERSION : " 3.8"
149
- py_3.9_64 :
150
- MB_PYTHON_VERSION : " 3.9"
Original file line number Diff line number Diff line change 23
23
- checkout : self
24
24
submodules : true
25
25
26
+ - bash : |
27
+ set -ex
28
+ echo AZURE_PYTHON_VERSION $AZURE_PYTHON_VERSION ${{ matrix.AZURE_PYTHON_VERSION }}
29
+ echo MB_PYTHON_VERSION $MB_PYTHON_VERSION ${{ matrix.MB_PYTHON_VERSION }}
30
+ displayName: Debug delete later
31
+
26
32
- task : UsePythonVersion@0
27
33
inputs :
28
- versionSpec : ${{ coalesce(variables .AZURE_PYTHON_VERSION, variables .MB_PYTHON_VERSION) }}
34
+ versionSpec : ${{ coalesce(matrix .AZURE_PYTHON_VERSION, matrix .MB_PYTHON_VERSION) }}
29
35
displayName : Set python version
30
36
31
37
- bash : |
You can’t perform that action at this time.
0 commit comments