Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit d140e54

Browse files
committed
add debug
1 parent 9082c52 commit d140e54

File tree

2 files changed

+7
-20
lines changed

2 files changed

+7
-20
lines changed

azure-pipelines.yml

-19
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,6 @@ jobs:
4949
PYTHON_ARCH: 'x64'
5050
BITS: 64
5151

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-
6952
- template: azure/posix.yml
7053
parameters:
7154
name: linux
@@ -146,5 +129,3 @@ jobs:
146129
MB_PYTHON_VERSION: "3.7"
147130
py_3.8_64:
148131
MB_PYTHON_VERSION: "3.8"
149-
py_3.9_64:
150-
MB_PYTHON_VERSION: "3.9"

azure/posix.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,15 @@ jobs:
2323
- checkout: self
2424
submodules: true
2525

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+
2632
- task: UsePythonVersion@0
2733
inputs:
28-
versionSpec: ${{ coalesce(variables.AZURE_PYTHON_VERSION, variables.MB_PYTHON_VERSION) }}
34+
versionSpec: ${{ coalesce(matrix.AZURE_PYTHON_VERSION, matrix.MB_PYTHON_VERSION) }}
2935
displayName: Set python version
3036

3137
- bash: |

0 commit comments

Comments
 (0)