forked from Legrandin/pycryptodome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
79 lines (79 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
language: python
arch:
- amd64
- arm64
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
env:
- CFFI=no
- CFFI=yes
matrix:
exclude:
- python: pypy
env: CFFI=no
- python: pypy3
env: CFFI=no
include:
- python: 2.6
env: CFFI=no
dist: trusty
- python: pypy
arch: amd64
env: CFFI=yes
- python: pypy3
arch: amd64
env: CFFI=yes
- language: c
script: cd src/test && make
after_success: true
- language: c
dist: trusty
arch: amd64
install: sudo apt-get install libc6-dev-i386
script: cd src/test && CFLAGS="-m32" UNDEFS="-UHAVE_UINT128" make
after_success: true
- language: c
arch: amd64
script: cd src/test && CPPFLAGS="-DHAVE_X86INTRIN_H" make
after_success: true
- python: 3.8
arch: amd64
install: pip install mypy
script: mypy lib/
after_success: true
- os: osx
env: PYCRYPTODOME_DEBUG=1
env: CFLAGS=" -isysroot $(xcrun --sdk macosx --show-sdk-path)"
language: generic
install: pip2 install cibuildwheel==1.1.0
after_success: travis/travis_after_success_osx.sh
services:
- docker
branches:
except:
- "/^.*-wip$/"
install:
- travis/travis_install.sh
script:
- travis/travis_script.sh
after_success:
- travis/travis_after_success.sh
deploy:
provider: s3
access_key_id: AKIAISG4H2IJZLISXOPQ
secret_access_key:
secure: DAuc3n+JLxlBmCLgQuLSXwIRHropTVK/TWj3jD99aB1+Bzy5CpmPtXyR3DGltGF2Bum52xcRM8dLFktinFkMqKF7UKZRGNwEey07Nhen94AGjkLomeEM0SRRjVP6T8RqLBK+buNcoRqiFTNM+JlW5ndY6Wy+kFaan+qk3UNz570=
bucket: pycryptodome-releases
local_dir: wheelhouse
skip_cleanup: true
acl: public_read
on:
condition: -d wheelhouse
all_branches: true
repo: Legrandin/pycryptodome
tags: true