diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-11-14 14:01:44 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2019-11-14 18:12:34 -0700 |
commit | dd1afc7839b251a07fe257effc2cc6d178d5782e (patch) | |
tree | 6659f9458a980bdc0be630e400b9dfbeb765d399 /.travis.yml | |
parent | 1ebf711fcd293725f061bf49af8357640c0b8349 (diff) | |
download | numpy-dd1afc7839b251a07fe257effc2cc6d178d5782e.tar.gz |
TST: See if we can run s390x on TravisCI.
Diffstat (limited to '.travis.yml')
-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 |