-
Notifications
You must be signed in to change notification settings - Fork 145
/
.travis.yml
51 lines (42 loc) · 1.22 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
os: linux
dist: focal
language: python
python: "3.9"
arch: arm64-graviton2
branches:
except:
- /^dependabot.*$/
jobs:
include:
- arch: arm64-graviton2
virt: vm
group: edge
- arch: ppc64le
- arch: s390x
allow_failures:
- arch: ppc64le
addons:
apt:
packages:
- qemu-user-static
services:
- docker
notifications:
email: false
install:
- curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import
- curl -fsSLo ${HOME}/codecov.SHA256SUM https://uploader.codecov.io/latest/linux/codecov.SHA256SUM
- curl -fsSLo ${HOME}/codecov.SHA256SUM.sig https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig
- curl -fsSLo ${HOME}/codecov https://uploader.codecov.io/latest/linux/codecov
- gpgv ${HOME}/codecov.SHA256SUM.sig ${HOME}/codecov.SHA256SUM
- pushd ${HOME} && shasum -a 256 -c codecov.SHA256SUM && popd
- chmod +x ${HOME}/codecov
- if [ "$(uname -m)" != "aarch64" ]; then qemu-x86_64-static ${HOME}/codecov --version; fi
- pip install nox
script:
- nox -s tests-3.9
after_success:
- if [ "$(uname -m)" != "aarch64" ]; then qemu-x86_64-static ${HOME}/codecov; fi
cache:
directories:
- $HOME/.cache/auditwheel_tests