-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
92 lines (77 loc) · 2.57 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
80
81
82
83
84
85
86
87
88
89
90
91
92
language: python
env:
global:
- ENCRYPTION_LABEL: "ece81675fc86"
- COMMIT_AUTHOR_EMAIL: "[email protected]"
matrix:
fast_finish: true
include:
# osx
- os: osx
language: generic
env: BUILD=tests PYTHON_VERSION=3.6.0 TARANTOOL_VERSION=1_6
- os: osx
language: generic
env: BUILD=tests PYTHON_VERSION=3.6.0 TARANTOOL_VERSION=1_7
# precise python3.5 Tarantool 1.6
- os: linux
dist: precise
sudo: required
language: python
python: '3.5'
env: BUILD=quicktests TARANTOOL_VERSION=1_6
# trusty python3.5 Tarantool 1.6
- os: linux
dist: trusty
sudo: required
language: python
python: '3.5'
env: BUILD=quicktests TARANTOOL_VERSION=1_6
# trusty python3.5 Tarantool 1.7
- os: linux
dist: trusty
sudo: required
language: python
python: '3.5'
env: BUILD=tests TARANTOOL_VERSION=1_7
# trusty python3.6 Tarantool 1.8
- os: linux
dist: trusty
sudo: required
language: python
python: '3.6'
env: BUILD=tests TARANTOOL_VERSION=1_8
# trusty python3.6 Tarantool 1.7 + deploy
- os: linux
dist: trusty
sudo: required
language: python
python: '3.6'
env: BUILD=tests,docs,coverage,release TARANTOOL_VERSION=1_7
cache:
- pip
before_install:
- ".ci/travis-before-install.sh"
install:
- ".ci/travis-install.sh"
script:
- ".ci/travis-tests.sh"
- ".ci/travis-build-docs.sh"
after_success:
- if [[ "${BUILD}" == *coverage* ]]; then coveralls; fi
deploy:
- provider: releases
skip_cleanup: true
api_key:
secure: CJ6KqhcxNx9seTTk5bXyoEC4tyQu1stquP2E1DWn7F5rhRmuR5ApKuJfgVOZDcy3S59jTuAperW/He3CHghkHcm7JspB8270zh/rwxFx6Viw3hPXsJFAB4GbBKXSRxc6XTTa0Jh3cC3yIwNSfm2BbcJb6HiLnyeqOjoHs83fZYVK/eFeWQQc9VGSdsop7urOQC7iKLM0BXIivOVuuFGJPSCz2VvvDpx/CKbr1qJ3qHbkCJhze/D+IAudbvEmgO1IhFEQHe7oo+cBN1aTgrbZqFM55V5WH48s/CWlVb3SE+RISiPLN3fY9edbi4UKm1SFz43LQ6BNG77fttdN4sKXz7zy5/73mENt1oavhx0l0tnIMUgoEPCb3rUD4BgJaFcSAFdiX1Kv5TU5A5Yu/BsrRdaScwdDw+vpvdQCoucFBn2lXVotyOHT/fFKiEjQ6WRRxMnaukvQcIhoLn4N+jHEh2txFTyDE5iMeXDuqf730xTjwC34Bixru0NANzJsT+MJBZTND7rWA19M6TLxHcAeDgePYVdfgMZt+944eN/qeQcYgDSaKM5KGW3pibG8M4hhqfr1Zcm0LI8kZA9zVV9fahK2Gt6UIbMI/1PzzVLRYF7lFYfePsmToj6QoRWmn5+hQ8EfuJwsiF9nQ+cr1WzpcH5ccsB2KDfIzwWF6L2ThF4=
file_glob: true
file: dist/asynctnt-queue*.tar.gz
on:
repo: igorcoding/asynctnt-queue
tags: true
condition: '"${BUILD}" == *release*'
- provider: script
script: .ci/travis-release.sh
on:
tags: true
condition: '"${BUILD}" == *release*'