Skip to content

Commit 9b0e4c9

Browse files
committed
AZURE: Expand matrix to Python 3.4-3.7, x86 and x64
1 parent 147f954 commit 9b0e4c9

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.azure-pipelines/windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
- job: ${{ parameters.name }}
99
pool:
1010
vmImage: ${{ parameters.vmImage }}
11+
variables:
12+
EXTRA_WHEELS: "https://5cf40426d9f06eb7461d-6fe47d9331aba7cd62fc36c7196769e4.ssl.cf2.rackcdn.com"
1113
strategy:
1214
matrix:
1315
${{ insert }}: ${{ parameters.matrix }}
@@ -22,7 +24,7 @@ jobs:
2224
python -m pip install --upgrade pip setuptools>=30.3.0 wheel
2325
displayName: 'Update build tools'
2426
- script: |
25-
python -m pip install numpy scipy matplotlib h5py pydicom
27+
python -m pip install --find-links %EXTRA_WHEELS% numpy scipy matplotlib h5py pydicom
2628
python -m pip install nose mock coverage codecov
2729
displayName: 'Install dependencies'
2830
- script: |

azure-pipelines.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ jobs:
55
name: Windows
66
vmImage: vs2017-win2016
77
matrix:
8-
py35:
8+
py35-x86:
99
PYTHON_VERSION: '3.5'
10+
PYTHON_ARCH: 'x86'
11+
py35-x64:
12+
PYTHON_VERSION: '3.5'
13+
PYTHON_ARCH: 'x64'
14+
py36-x86:
15+
PYTHON_VERSION: '3.6'
16+
PYTHON_ARCH: 'x86'
17+
py36-x64:
18+
PYTHON_VERSION: '3.6'
19+
PYTHON_ARCH: 'x64'
20+
py37-x86:
21+
PYTHON_VERSION: '3.7'
22+
PYTHON_ARCH: 'x86'
23+
py37-x64:
24+
PYTHON_VERSION: '3.7'
1025
PYTHON_ARCH: 'x64'

0 commit comments

Comments
 (0)