This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 3 files changed +18
-2
lines changed
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -47,22 +47,34 @@ jobs:
47
47
py_3.6_32 :
48
48
MB_PYTHON_VERSION : " 3.6"
49
49
PLAT : " i686"
50
+ MB_ML_VER : " 2010"
51
+ ENV_VARS_PATH : " env_vars_32.sh"
52
+ DOCKER_TEST_IMAGE : " multibuild/xenial_{PLAT}"
50
53
py_3.6_64 :
51
54
MB_PYTHON_VERSION : " 3.6"
55
+ MB_ML_VER : " 2010"
52
56
py_3.7_32 :
53
57
MB_PYTHON_VERSION : " 3.7"
54
58
PLAT : " i686"
55
59
NIGHTLY_BUILD : " true"
60
+ MB_ML_VER : " 2010"
61
+ ENV_VARS_PATH : " env_vars_32.sh"
62
+ DOCKER_TEST_IMAGE : " multibuild/xenial_{PLAT}"
56
63
py_3.7_64 :
57
64
MB_PYTHON_VERSION : " 3.7"
58
65
NIGHTLY_BUILD : " true"
66
+ MB_ML_VER : " 2010"
59
67
py_3.8_32 :
60
68
MB_PYTHON_VERSION : " 3.8"
61
69
PLAT : " i686"
62
70
NIGHTLY_BUILD : " true"
71
+ MB_ML_VER : " 2010"
72
+ ENV_VARS_PATH : " env_vars_32.sh"
73
+ DOCKER_TEST_IMAGE : " multibuild/xenial_{PLAT}"
63
74
py_3.8_64 :
64
75
MB_PYTHON_VERSION : " 3.8"
65
76
NIGHTLY_BUILD : " true"
77
+ MB_ML_VER : " 2010"
66
78
67
79
- template : azure/posix.yml
68
80
parameters :
71
83
matrix :
72
84
py_3.6_64 :
73
85
MB_PYTHON_VERSION : " 3.6"
86
+ MB_PYTHON_OSX_VER : 10.9
74
87
py_3.7_64 :
75
88
MB_PYTHON_VERSION : " 3.7"
76
89
NIGHTLY_BUILD : " true"
90
+ MB_PYTHON_OSX_VER : 10.9
77
91
py_3.8_64 :
78
92
MB_PYTHON_VERSION : " 3.8"
79
93
NIGHTLY_BUILD : " true"
94
+ MB_PYTHON_OSX_VER : 10.9
Original file line number Diff line number Diff line change 62
62
condition: eq(variables['SKIP_BUILD'], 'false')
63
63
- bash : |
64
64
set -e
65
- pip install --timeout=60 -r test_requirements.txt
66
- pip install twine wheel
67
65
pushd numpy
66
+ pip install twine wheel
67
+ pip install --timeout=60 -r test_requirements.txt
68
68
python setup.py build
69
69
python setup.py bdist_wheel
70
70
ls dist
Original file line number Diff line number Diff line change 1
1
# Environment variables for 32-bit build.
2
2
# The important difference from the 64-bit build is `-msse2` to
3
3
# compile sse loops for ufuncs.
4
+ set -x
4
5
OPENBLAS_VERSION=" v0.3.7"
5
6
MACOSX_DEPLOYMENT_TARGET=10.9
6
7
CFLAGS=" -msse2 -std=c99 -fno-strict-aliasing"
You can’t perform that action at this time.
0 commit comments