pyo3/.travis.yml

73 lines
1.2 KiB
YAML
Raw Normal View History

sudo: required
dist: trusty
2015-06-28 19:46:24 +00:00
language: python
2018-02-21 18:06:48 +00:00
cache:
pip: true
cargo: true
2018-02-21 18:06:48 +00:00
matrix:
include:
- python: "2.7"
env: FEATURES=python2
- python: "3.5"
env: FEATURES=python3
- python: "3.6"
env: FEATURES=python3
2018-02-21 18:06:48 +00:00
- python: "3.7-dev"
env: FEATURES=python3
allow_failures:
- python: "3.7-dev"
env: FEATURES=python3
2017-06-12 01:30:56 +00:00
2015-04-19 03:21:28 +00:00
env:
2017-11-27 19:04:49 +00:00
global:
- TRAVIS_RUST_VERSION=nightly
- RUST_BACKTRACE=1
2017-06-15 16:11:19 +00:00
2017-11-27 19:04:49 +00:00
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
before_install:
- source ./ci/travis/setup.sh
2017-06-15 16:11:19 +00:00
2015-06-28 19:46:24 +00:00
install:
- pip install setuptools-rust pytest pytest-benchmark
script:
2018-05-23 14:38:44 +00:00
- ./ci/travis/test.sh
deploy:
- provider: script
skip_cleanup: true
script: ./ci/travis/cover.sh
on:
branch: master
2018-06-12 12:36:34 +00:00
condition: $TRAVIS_EVENT_TYPE != "cron"
- provider: script
skip_cleanup: true
script: ./ci/travis/guide.sh
on:
branch: master
repo: PyO3/pyo3
python: 3.6
2018-06-12 12:36:34 +00:00
condition: $TRAVIS_EVENT_TYPE != "cron"
- provider: script
skip_cleanup: true
script: ./ci/travis/guide.sh
on:
tags: true
repo: PyO3/pyo3
python: 3.6
notifications:
email: false