forked from sizmailov/pybind11-stubgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 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
language: python
sudo: false
os: linux
dist: trusty
branches:
only:
- master
git:
submodules: false
matrix:
include:
- env:
- COMPILER=g++-7
- BUILD_TYPE=Release
- RUN_CTESTS=false
addons:
apt:
packages:
- g++-7
- python3.6
- python3.6-dev
sources:
- deadsnakes
- ubuntu-toolchain-r-test
python: 3.6
before_install:
- export CXX=$COMPILER
- "$COMPILER --version"
- python --version
- python -m pip install codecov
install:
- python setup.py install
script:
- (cd test ; bash run_test.sh)
after_success:
- (cd test ; codecov)
deploy:
- provider: pypi
user: __token__
password:
secure: V4AHpUCPgy0SBypPHxsppsr3BBE7JAH1zt6sHBemCRqPQPP/NKObNAS/2iAcAzDlnKpITNJ6Q7m8YNT6yhFCTeMlMj1ZRH8I6oHFgpYpM+gmidsxa5bNjLePerpUXTELy2R2RzQwu6/D0SkL7QB2ejtrhPcODuHlXxlKajOOMVYBvCzZlSATg2H/ujs+z6mrGAJjgqKxlbGyQjeXwAx/ODtsTimKpMeYpQzXANW28b7hxz0wZs11qHrWijf+j45KZoR4f03HDwIUDIqtnJB4aBz/0XY55GonRKrtbQhS6kSj/H2x9OTZHyoIHkLzmzlckiiuCv5Jd97OBGOTbVFF2pCj6Q2fKo4fl5nDZuZaMpkhUkHofJWabJ1C3md8DtQ5xmxxJf7cATztvdsmqtXC9ciPvITA/Fk/02TCdOZpivnhGg+6AuR+xNzA7YRo8aw2r0UNVtBFT8CjPFfxth/6fQ9OuWanoi/d49BbxCJjo0KJe4KFeESpNkqZgw7Aj5HKreSajlLgTq6YvPu0M2lxjcuvnLpgcI2Of16w2cFZvk+PtohzEghYpdtnk91gZNgL9vee5ghRja8DROYbqS17AEJx3ilmXp7jiv6zWXHwnVKLbRtY+fpWRmSHLbt2AWwniirhkgiJrz88JqduhzSxrhAYTOkL/0j3zVVfiA88U2M=
skip_existing: true
on:
branch: master