blob: 0ec730f167d5433ae6773b68239da56cfa03b75d [file] [log] [blame]
Cosimo Lupobb3d9242015-08-11 12:39:49 +01001language:
2- objective-c
3env:
4 matrix:
5 - INSTALL_TYPE='system' VERSION=2.7
Cosimo Lupoa5822da2015-08-12 09:42:30 +01006 - INSTALL_TYPE='macpython' VERSION=2.7.10 CC=clang CXX=clang++
7 - INSTALL_TYPE='macpython' VERSION=3.4.3 CC=clang CXX=clang++
Cosimo Lupobb3d9242015-08-11 12:39:49 +01008 - INSTALL_TYPE='homebrew' VERSION=2.7.10
9 - INSTALL_TYPE='homebrew' VERSION=3.4.3
10install:
11- source terryfy/travis_tools.sh
12- get_python_environment $INSTALL_TYPE $VERSION venv
13- pip install --upgrade wheel
14script:
15- python setup.py build_ext test
16after_success:
17- pip wheel -w dist .
18before_deploy:
Cosimo Lupo6dcb0dd2015-08-12 15:57:03 +010019- export WHEELS=$(ls ./dist/*.whl)
20
Zoltan Szabadka070dacb2015-08-31 15:34:42 +020021deploy:
22 provider: releases
23 api_key:
24 secure: YcCBi6W/w4dtKCa59Wfm8L5lGWvK7KxaFNDr3yh1Hz5aStXXf758pEMHGewnlbfbwuj5a3SjBb1nLp1M69OQJfxm442uXBaBKo52PM9PPbD7NjvbNIso73pqcSODXQXKuZxDFpEhfuDTVq3hUkUqiwhChWhrFucJsSL51i7qSss=
25 file:
26 - "${WHEELS}"
27 skip_cleanup: true
28 on:
29 repo: google/brotli
30 tags: true