diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-11-15 10:07:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-15 10:07:23 -0700 |
commit | e61f5b0e8a981fd4623dc18fbaa5caec1323882f (patch) | |
tree | 715611924facd50e3c7ff2d45534c6d6b9737f09 | |
parent | ae88e02a48c4744afd22c63be388870037f3c84c (diff) | |
parent | dd1afc7839b251a07fe257effc2cc6d178d5782e (diff) | |
download | numpy-e61f5b0e8a981fd4623dc18fbaa5caec1323882f.tar.gz |
Merge pull request #14907 from charris/test-IBM
TST: Add s390x to the TravisCI test matrix.
-rw-r--r-- | .travis.yml | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 68564d35b..db9cd44b8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -82,14 +82,20 @@ matrix: - BLAS=None - LAPACK=None - ATLAS=None - - os: linux-ppc64le - python: 3.6 + - python: 3.6 + os: linux + arch: ppc64le + env: + # use ppc64le OpenBLAS build, not system ATLAS + - ATLAS=None + - python: 3.6 + os: linux + arch: s390x env: - # for matrix annotation only - - PPC64_LE=1 - # use POWER8 OpenBLAS build, not system ATLAS + # use s390x OpenBLAS build, not system ATLAS - ATLAS=None + before_install: - ./tools/travis-before-install.sh |