This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 3 files changed +36
-3
lines changed
3 files changed +36
-3
lines changed Original file line number Diff line number Diff line change 55
55
- MB_PYTHON_VERSION=3.6
56
56
- DEBUG_PRINT=1
57
57
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
58
+ - os : linux
59
+ arch : arm64
60
+ env :
61
+ - PLAT=aarch64
62
+ - MB_ML_VER=2014
63
+ - MB_PYTHON_VERSION=3.7
64
+ - DEBUG_PRINT=1
65
+ - DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
58
66
- os : linux
59
67
arch : arm64
60
68
env :
68
76
env :
69
77
- PLAT=aarch64
70
78
- MB_ML_VER=2014
71
- - MB_PYTHON_VERSION=3.7
79
+ - MB_PYTHON_VERSION=3.9
72
80
- DEBUG_PRINT=1
73
81
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
74
82
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ variables:
16
16
jobs :
17
17
- template : azure/windows.yml
18
18
parameters :
19
- name : windows
19
+ name : windows2017
20
20
vmImage : vs2017-win2016
21
21
matrix :
22
22
py_3.6_32 :
@@ -81,12 +81,28 @@ jobs:
81
81
py_3.8_64 :
82
82
MB_PYTHON_VERSION : " 3.8"
83
83
MB_ML_VER : " 2010"
84
+ py_3.9_32manylinux2010 :
85
+ MB_PYTHON_VERSION : " 3.9"
86
+ # Comment this out when the image grows a CPython3.9
87
+ AZURE_PYTHON_VERSION : " 3.8"
88
+ PLAT : " i686"
89
+ MB_ML_VER : " 2010"
90
+ ENV_VARS_PATH : " env_vars_32.sh"
91
+ DOCKER_TEST_IMAGE : " multibuild/xenial_{PLAT}"
92
+ py_3.9_64manylinux2010 :
93
+ MB_PYTHON_VERSION : " 3.9"
94
+ # Comment this out when the image grows a CPython3.9
95
+ AZURE_PYTHON_VERSION : " 3.8"
96
+ MB_ML_VER : " 2010"
97
+ DOCKER_TEST_IMAGE : " multibuild/xenial_{PLAT}"
98
+
84
99
# manylinux1 wheels
85
100
py_3.6_32manylinux1 :
86
101
MB_PYTHON_VERSION : " 3.6"
87
102
PLAT : " i686"
88
103
MB_ML_VER : " 1"
89
104
ENV_VARS_PATH : " env_vars_32.sh"
105
+ DOCKER_TEST_IMAGE : " multibuild/xenial_{PLAT}"
90
106
py_3.6_64manylinux1 :
91
107
MB_PYTHON_VERSION : " 3.6"
92
108
MB_ML_VER : " 1"
95
111
PLAT : " i686"
96
112
MB_ML_VER : " 1"
97
113
ENV_VARS_PATH : " env_vars_32.sh"
114
+ DOCKER_TEST_IMAGE : " multibuild/xenial_{PLAT}"
98
115
py_3.7_64manylinux1 :
99
116
MB_PYTHON_VERSION : " 3.7"
100
117
MB_ML_VER : " 1"
@@ -103,6 +120,7 @@ jobs:
103
120
PLAT : " i686"
104
121
MB_ML_VER : " 1"
105
122
ENV_VARS_PATH : " env_vars_32.sh"
123
+ DOCKER_TEST_IMAGE : " multibuild/xenial_{PLAT}"
106
124
py_3.8_64manylinux1 :
107
125
MB_PYTHON_VERSION : " 3.8"
108
126
MB_ML_VER : " 1"
Original file line number Diff line number Diff line change @@ -23,10 +23,17 @@ jobs:
23
23
- checkout : self
24
24
submodules : true
25
25
26
+ - task : UsePythonVersion@0
27
+ inputs :
28
+ versionSpec : $(AZURE_PYTHON_VERSION)
29
+ displayName : Set python version from AZURE
30
+ condition : ne( coalesce (variables['AZURE_PYTHON_VERSION'], 'NONE'), 'NONE')
31
+
26
32
- task : UsePythonVersion@0
27
33
inputs :
28
34
versionSpec : $(MB_PYTHON_VERSION)
29
- displayName : Set python version
35
+ displayName : Set python version from MB
36
+ condition : eq( coalesce (variables['AZURE_PYTHON_VERSION'], 'NONE'), 'NONE')
30
37
31
38
- bash : |
32
39
set -e
You can’t perform that action at this time.
0 commit comments