https://github.com/limix/travis-tools
https://github.com/limix/travis-tools
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/limix/travis-tools
- Owner: limix
- License: mit
- Created: 2017-04-14T13:19:26.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-06T18:16:51.000Z (over 7 years ago)
- Last Synced: 2025-01-23T08:45:22.819Z (4 months ago)
- Language: Shell
- Size: 75.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# travis-tools
Test, build, and deploy Linux and OSX wheels for Python packages.
## Usage
Your file .travis.yml will have
```
language: python
sudo: required
dist: trusty
services: docker
git:
depth: 5
cache:
pip: true
directories:
- "$HOME/bin"
- "$HOME/.download"
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
- env: DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
- os: osx
language: generic
env: PYENV=py27
- os: osx
language: generic
env: PYENV=py35
- os: osx
language: generic
env: PYENV=py36
before_install:
- travis_retry bash <(curl -s https://raw.githubusercontent.com/limix/travis-tools/master/get-travis-tools.sh)
- travis_retry travis/before-install.sh
script:
- travis_retry travis/script.sh
after_success:
- travis_retry travis/after-success.sh
notifications:
email: false
```## Authors
* **Danilo Horta** - [https://github.com/Horta](https://github.com/Horta)
## License
This project is licensed under the MIT License - see the
[LICENSE](LICENSE) file for details