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

Commit

Permalink
add debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Aug 6, 2020
1 parent 9082c52 commit d140e54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 20 deletions.
19 changes: 0 additions & 19 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,23 +49,6 @@ jobs:
PYTHON_ARCH: 'x64'
BITS: 64

- template: azure/windows.yml
parameters:
name: windows2019
vmImage: windows-2019
matrix:
py_3.9_32:
# Will use the latest up to 3.9.0
PYTHON_VERSION: "'3.9.0-alpha - 3.9.0'"
PYTHON_ARCH: "x86"
BITS: 32
py_3.9_64:
# Will use the latest up to 3.9.0
PYTHON_VERSION: "'3.9.0-alpha - 3.9.0'"
PYTHON_ARCH: 'x64'
BITS: 64


- template: azure/posix.yml
parameters:
name: linux
Expand Down Expand Up @@ -146,5 +129,3 @@ jobs:
MB_PYTHON_VERSION: "3.7"
py_3.8_64:
MB_PYTHON_VERSION: "3.8"
py_3.9_64:
MB_PYTHON_VERSION: "3.9"
8 changes: 7 additions & 1 deletion azure/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,15 @@ jobs:
- checkout: self
submodules: true

- bash: |
set -ex
echo AZURE_PYTHON_VERSION $AZURE_PYTHON_VERSION ${{ matrix.AZURE_PYTHON_VERSION }}
echo MB_PYTHON_VERSION $MB_PYTHON_VERSION ${{ matrix.MB_PYTHON_VERSION }}
displayName: Debug delete later
- task: UsePythonVersion@0
inputs:
versionSpec: ${{ coalesce(variables.AZURE_PYTHON_VERSION, variables.MB_PYTHON_VERSION) }}
versionSpec: ${{ coalesce(matrix.AZURE_PYTHON_VERSION, matrix.MB_PYTHON_VERSION) }}
displayName: Set python version

- bash: |
Expand Down

0 comments on commit d140e54

Please sign in to comment.