forked from pypa/auditwheel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
53 lines (44 loc) · 1.46 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
language: python
matrix:
include:
- python: "3.4"
- python: "3.5"
- python: "3.5"
env: WHEELHOUSE=1
- python: "3.6"
allow_failures:
- python: "3.5"
env: WHEELHOUSE=1
sudo: required
services:
- docker
notifications:
email: false
branches:
only:
- master
before_install:
- pip install --upgrade pip wheel
install:
- pip install -r test-requirements.txt
- pip install .
script:
- |
if [[ "$WHEELHOUSE" == "1" ]]; then
bash tests/test-wheelhouses.sh
else
py.test -s
auditwheel lddtree $(python -c 'import sys; print(sys.executable)')
fi
deploy:
provider: pypi
user: rmcgibbo
password:
secure: LOXMfae5B5cuY/FUQfGXAKFwScObvqPKCPF1prKFXhlGP+CjZZzCG7PmNwWKiVFWBYvHIzCCviKQ0FFtqLcxE79sCE6E6VXwUngSw39m5iOxubQaOi3GSTdzPCR/BFSE2iQR1/aBgmxui4NUY5lWjFhqtNSZo7YRacUYAViqSZop1manE7zO3FOhSA07ep7re2SM4vhIWDKwDLMToXfjSYWKtz4Yx0wEnNqNUDllKeOGSxQv1urEP5wd89o9xl6neGks4VuRfk9cqIkc23mKPN8T4xMmZnriMFnEFYI5sdApcr5+qBZWJpJL0o3Vo3iDmvUf3KqOIcXH3fMl1C9bdoE0PK0QRAircuwkuNYg3iOjkE6OLGaOuGjtYMhaWikiWCFGqtX8eMLHeoKEsAv2bvxYe14a9KE4lHOK9ooxlCuflG6I9CeS0Z8qlTSs+C0W2NLeqT2JFw1D4EFS5i/pJq1C5eMWUhTGkQFKme1cyX78+mWFNupQPQIYeMHihZxd9BJDTYP2jZz5JsZkWpV1/5OOB65hvEwRDLY37GbNmajnrL6auzSMJTx5brj5+pm3jtaQ47sBdrZ1bpmytjA/S6HYVCLbkn83aqqJLny1pidoRXatg5sg68Y0k/zcmGiQI4Bk6J8nQAUXO6/htPi9Wgm/1b10jh+7or/TRUihOhY=
on:
tags: true
repo: pypa/auditwheel
cache:
directories:
- wheelhouse-rmcgibbo/
- .cache/auditwheel_tests/