-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
44 lines (37 loc) · 1.95 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
language: c
branches:
only:
- master
install:
- source devtools/ci/install.sh
- export PYTHONUNBUFFERED=true
script:
# this builds the binary, unpacks it, and runs the tests
- conda build devtools/conda-recipe
# Push to binstar.
env:
matrix:
- python=2.7 CONDA_PY=27
#- python=3.3 CONDA_PY=33
#- python=3.4 CONDA_PY=34
global:
# TODO: no amazon s3 server to publish docs to
#after_success:
# - echo "after_success"
# - bash -x devtools/ci/after_sucess.sh
deploy:
edge: true # testing bleeding edge git deployment code
provider: pypi
distributions: "sdist"
skip_cleanup: true
# docs_dir is ignored by travis (despite the issue filed against this feature, maybe its not yet active?
# docs_dir: doc/build/html
# TODO: security tokens are encrypted on repository base (reencrypt when moving repo to cmb organisation)
user:
secure: "Z6h333HK9R9b4vwYzk5N54IeMJ8vmd4V+vXRTLNnOCCqVkWcocWY9HBX2s9jk3TkSJbg9eL/EVzCv7HVGY1A80czNN160Vj3z5J51WEfHk4hhC7GDSXEU1CGRdp3j+79/WeaioOstq3y4Mxy6v1Afn3k7gAY7ui+yYbSEbRIG0A="
password:
secure: "F3I26Mx0vbiIrSf/MsE8OGNV4xr82Wx4AWItHcXEq+pwBreNyCg/KVQInJ90lSh2RmvGAMmzw6rQ4EFaHYrFuAekilM/4tkRBGF/pSrEG7KSL2ysyoJIqTRncJCs1USyNYWodmXjRTQjLyJKoZufpNZ4u6Da1pVQDZqbsL0LtZo="
on:
python: 2.7 # only upload docs and sdist for py27
tags: true
branches: master