-
Notifications
You must be signed in to change notification settings - Fork 342
/
Copy path.travis.yml
61 lines (51 loc) · 1.71 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
# vim:ts=2:sts=2:sw=2:et
#
# Author: Hari Sekhon
# Date: 2014-11-29 01:02:47 +0000 (Sat, 29 Nov 2014)
#
# https://github.com/harisekhon/devops-python-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
# to help improve or steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
language: python
python:
# - "2.6"
- "2.7"
# MySQL in lib doesn't build from pip in Python 3
# - "3.2"
# - "3.3"
# - "3.4"
# - "3.5"
# python-krbV fails to compile on PyPy
# - "pypy"
# - "pypy3"
sudo: required
env:
# - DEBUG=1
- DOCKER_COMPOSE_VERSION=1.16.1 PYTHONUNBUFFERED=1
notifications:
email: false
branches:
only:
- master
cache: pip
services:
- docker
install:
- travis_retry make
#- pip install --upgrade ndg-httpsclient
- travis_retry pip uninstall -y certifi && travis_retry pip install certifi==2015.04.28
script:
- travis_retry make test
after_success:
- coveralls
- curl --data {build:true} -X POST https://registry.hub.docker.com/u/harisekhon/pytools/trigger/0e69c39f-ea1b-43c7-a97d-cef1252f1400/
- curl --data {build:true} -X POST https://registry.hub.docker.com/u/harisekhon/alpine-github/trigger/8d9cb826-48df-439c-8c20-1975713064fc/
- curl --data {build:true} -X POST https://registry.hub.docker.com/u/harisekhon/centos-github/trigger/316d1158-7ffb-49a4-a7bd-8e5456ba2d15/
- curl --data {build:true} -X POST https://registry.hub.docker.com/u/harisekhon/debian-github/trigger/0cfb3fe7-2028-494b-a43b-068435e6a2b3/
- curl --data {build:true} -X POST https://registry.hub.docker.com/u/harisekhon/ubuntu-github/trigger/abd4dbf0-14bc-454f-9cde-081ec014bc48/