This repository was archived by the owner on Apr 16, 2021. It is now read-only.
File tree 2 files changed +26
-2
lines changed
2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 49
49
- MB_PYTHON_VERSION=3.9
50
50
- NP_BUILD_DEP=1.16
51
51
- NP_TEST_DEP=1.16
52
+ - os : linux
53
+ arch : arm64
54
+ env :
55
+ - MB_PYTHON_VERSION=3.7
56
+ - NP_BUILD_DEP=1.19
57
+ - NP_TEST_DEP=1.19
58
+ - PLAT=aarch64
59
+ - MB_ML_VER=2014
60
+ - DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
61
+ - os : linux
62
+ arch : arm64
63
+ env :
64
+ - MB_PYTHON_VERSION=3.8
65
+ - NP_BUILD_DEP=1.19
66
+ - NP_TEST_DEP=1.19
67
+ - PLAT=aarch64
68
+ - MB_ML_VER=2014
69
+ - DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
52
70
- os : osx
53
71
language : generic
54
72
env :
@@ -91,7 +109,13 @@ install:
91
109
- python rm_test_images.py wheelhouse/*.whl
92
110
93
111
script :
94
- - TEST_DEPENDS="numpy==$NP_TEST_DEP sphinx pytest pytest-timeout pytest-xdist pytest-faulthandler pytest-rerunfailures requests[security]"
112
+ # See:
113
+ # https://github.com/matthew-brett/multibuild/issues/346
114
+ - if [[ "${TRAVIS_CPU_ARCH}" == "arm64" ]]; then
115
+ TEST_DEPENDS="numpy==$NP_TEST_DEP sphinx pytest pytest-timeout pytest-xdist pytest-faulthandler pytest-rerunfailures";
116
+ else
117
+ TEST_DEPENDS="numpy==$NP_TEST_DEP sphinx pytest pytest-timeout pytest-xdist pytest-faulthandler pytest-rerunfailures requests[security]";
118
+ fi
95
119
# increase number of open files allowed for tests, on OSX
96
120
# https://github.com/matplotlib/matplotlib/issues/3315
97
121
- ulimit -n 4096
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function run_tests {
56
56
57
57
if [ -z " $IS_OSX " ]; then
58
58
# Need fc-list for tests
59
- sudo apt-get install fontconfig
59
+ apt-get install fontconfig
60
60
fi
61
61
62
62
echo " sanity checks"
You can’t perform that action at this time.
0 commit comments