Skip to content

Commit 5334467

Browse files
Update .travis.yml
1 parent ebfe55e commit 5334467

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.travis.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ version: ~> 1.0
22
dist: xenial
33
language: python
44
cache: pip
5-
5+
arch:
6+
- arm64
7+
- amd64
68
python:
79
# Available Python (PyPy) can be listed by:
810
#
@@ -37,11 +39,30 @@ matrix:
3739
- docker pull $DOCKER_IMAGE
3840
script:
3941
- docker run --rm -v `pwd`:/io -w /io $DOCKER_IMAGE /io/docker/runtests.sh
42+
- arch: arm64
43+
name: 32bit build
44+
language: python
45+
services:
46+
- docker
47+
env:
48+
- DOCKER_IMAGE=quay.io/pypa/manylinux1_i686
49+
install:
50+
- pip install -U pip
51+
- pip install -r requirements.txt
52+
- make cython
53+
- docker pull $DOCKER_IMAGE
54+
script:
55+
- docker run --rm -v `pwd`:/io -w /io $DOCKER_IMAGE /io/docker/runtests.sh
4056

4157
- name: "Python 2 (fallback)"
4258
python: "2.7"
4359
<<: *pure
4460

61+
- arch: arm64
62+
name: "Python 2 (fallback)"
63+
python: "2.7"
64+
<<: *pure
65+
4566
- name: "pypy2.7"
4667
python: "pypy2.7-7.1.1"
4768
<<: *pure

0 commit comments

Comments
 (0)