10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebfe55e commit 030bb2fCopy full SHA for 030bb2f
.travis.yml
@@ -2,7 +2,9 @@ version: ~> 1.0
2
dist: xenial
3
language: python
4
cache: pip
5
-
+arch:
6
+ - amd64
7
+ - arm64
8
python:
9
# Available Python (PyPy) can be listed by:
10
#
@@ -38,6 +40,21 @@ matrix:
38
40
script:
39
41
- docker run --rm -v `pwd`:/io -w /io $DOCKER_IMAGE /io/docker/runtests.sh
42
43
+ - arch: arm64
44
+ name: arm64 32bit build
45
+ language: python
46
+ services:
47
+ - docker
48
+ env:
49
+ - DOCKER_IMAGE=quay.io/pypa/manylinux2014_aarch64
50
+ install:
51
+ - pip install -U pip
52
+ - pip install -r requirements.txt
53
+ - make cython
54
+ - docker pull $DOCKER_IMAGE
55
+ script:
56
+ - docker run --rm -v `pwd`:/io -w /io $DOCKER_IMAGE /io/docker/runtests.sh
57
+
58
- name: "Python 2 (fallback)"
59
python: "2.7"
60
<<: *pure
0 commit comments