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

Commit 3cf8f1e

Browse files
committed
use manylinux2010, fix order of commands on windows
1 parent b1e672a commit 3cf8f1e

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

azure-pipelines.yml

+15
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,34 @@ jobs:
4747
py_3.6_32:
4848
MB_PYTHON_VERSION: "3.6"
4949
PLAT: "i686"
50+
MB_ML_VER: "2010"
51+
ENV_VARS_PATH: "env_vars_32.sh"
52+
DOCKER_TEST_IMAGE: "multibuild/xenial_{PLAT}"
5053
py_3.6_64:
5154
MB_PYTHON_VERSION: "3.6"
55+
MB_ML_VER: "2010"
5256
py_3.7_32:
5357
MB_PYTHON_VERSION: "3.7"
5458
PLAT: "i686"
5559
NIGHTLY_BUILD: "true"
60+
MB_ML_VER: "2010"
61+
ENV_VARS_PATH: "env_vars_32.sh"
62+
DOCKER_TEST_IMAGE: "multibuild/xenial_{PLAT}"
5663
py_3.7_64:
5764
MB_PYTHON_VERSION: "3.7"
5865
NIGHTLY_BUILD: "true"
66+
MB_ML_VER: "2010"
5967
py_3.8_32:
6068
MB_PYTHON_VERSION: "3.8"
6169
PLAT: "i686"
6270
NIGHTLY_BUILD: "true"
71+
MB_ML_VER: "2010"
72+
ENV_VARS_PATH: "env_vars_32.sh"
73+
DOCKER_TEST_IMAGE: "multibuild/xenial_{PLAT}"
6374
py_3.8_64:
6475
MB_PYTHON_VERSION: "3.8"
6576
NIGHTLY_BUILD: "true"
77+
MB_ML_VER: "2010"
6678

6779
- template: azure/posix.yml
6880
parameters:
@@ -71,9 +83,12 @@ jobs:
7183
matrix:
7284
py_3.6_64:
7385
MB_PYTHON_VERSION: "3.6"
86+
MB_PYTHON_OSX_VER: 10.9
7487
py_3.7_64:
7588
MB_PYTHON_VERSION: "3.7"
7689
NIGHTLY_BUILD: "true"
90+
MB_PYTHON_OSX_VER: 10.9
7791
py_3.8_64:
7892
MB_PYTHON_VERSION: "3.8"
7993
NIGHTLY_BUILD: "true"
94+
MB_PYTHON_OSX_VER: 10.9

azure/windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ jobs:
6262
condition: eq(variables['SKIP_BUILD'], 'false')
6363
- bash: |
6464
set -e
65-
pip install --timeout=60 -r test_requirements.txt
66-
pip install twine wheel
6765
pushd numpy
66+
pip install twine wheel
67+
pip install --timeout=60 -r test_requirements.txt
6868
python setup.py build
6969
python setup.py bdist_wheel
7070
ls dist

env_vars_32.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Environment variables for 32-bit build.
22
# The important difference from the 64-bit build is `-msse2` to
33
# compile sse loops for ufuncs.
4+
set -x
45
OPENBLAS_VERSION="v0.3.7"
56
MACOSX_DEPLOYMENT_TARGET=10.9
67
CFLAGS="-msse2 -std=c99 -fno-strict-aliasing"

0 commit comments

Comments
 (0)