2016-09-28 15:10:15 +02:00
|
|
|
language: python
|
2017-03-28 04:53:47 +02:00
|
|
|
sudo: false
|
2017-03-25 05:00:42 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
2017-03-28 04:53:47 +02:00
|
|
|
# (default)
|
2017-03-26 06:22:47 +02:00
|
|
|
- os: linux
|
|
|
|
python: 2.6
|
|
|
|
- os: linux
|
|
|
|
python: 2.7
|
|
|
|
- os: linux
|
|
|
|
python: 3.3
|
|
|
|
- os: linux
|
|
|
|
python: 3.4
|
|
|
|
- os: linux
|
|
|
|
python: 3.5
|
|
|
|
- os: linux
|
|
|
|
python: 3.6
|
|
|
|
- os: linux
|
|
|
|
python: 3.7-dev
|
2017-03-28 04:53:47 +02:00
|
|
|
# Ubuntu 12.04
|
2017-03-26 06:22:47 +02:00
|
|
|
- os: linux
|
|
|
|
dist: precise
|
2017-03-28 04:53:47 +02:00
|
|
|
language: generic
|
|
|
|
env: PY_VER=py26,py27,py33,py34,py35,py36 PY_ORIGIN=pyenv
|
2017-03-26 06:22:47 +02:00
|
|
|
# Ubuntu 14.04
|
|
|
|
- os: linux
|
|
|
|
dist: trusty
|
|
|
|
language: generic
|
2017-03-28 04:53:47 +02:00
|
|
|
env: PY_VER=py26,py27,py33,py34,py35,py36 PY_ORIGIN=pyenv
|
2017-03-26 06:22:47 +02:00
|
|
|
# macOS 10.12 Sierra
|
|
|
|
- os: osx
|
|
|
|
osx_image: xcode8.2
|
|
|
|
language: generic
|
2017-03-28 04:53:47 +02:00
|
|
|
env: PY_VER=py26,py27,py33,py34,py35,py36
|
|
|
|
# Mac OS X 10.11 El Capitan
|
2017-03-26 06:22:47 +02:00
|
|
|
- os: osx
|
2017-03-28 04:53:47 +02:00
|
|
|
osx_image: xcode7.3
|
2017-03-26 06:22:47 +02:00
|
|
|
language: generic
|
2017-03-28 04:53:47 +02:00
|
|
|
env: PY_VER=py26,py27,py33,py34,py35,py36
|
|
|
|
# Mac OS X 10.10 Yosemite
|
2017-03-26 06:22:47 +02:00
|
|
|
- os: osx
|
2017-03-28 04:53:47 +02:00
|
|
|
osx_image: xcode6.4
|
2017-03-26 06:22:47 +02:00
|
|
|
language: generic
|
2017-03-28 04:53:47 +02:00
|
|
|
env: PY_VER=py26,py27,py33,py34,py35,py36
|
2017-03-25 05:00:42 +01:00
|
|
|
allow_failures:
|
2017-03-28 04:53:47 +02:00
|
|
|
- python: 3.7-dev
|
|
|
|
- env: PY_VER=py37
|
|
|
|
- env: PY_VER=py37/pyenv
|
|
|
|
- env: PY_VER=py37 PY_ORIGIN=pyenv
|
|
|
|
fast_finish: true
|
|
|
|
|
|
|
|
cache:
|
|
|
|
- pip
|
|
|
|
- directories:
|
|
|
|
- $HOME/.pyenv.cache
|
2017-03-26 06:22:47 +02:00
|
|
|
|
|
|
|
before_install:
|
2017-03-28 04:53:47 +02:00
|
|
|
- source test/tools/ci-linux.sh
|
|
|
|
- ci_step_before_install
|
2017-03-26 06:22:47 +02:00
|
|
|
|
2016-09-28 15:10:15 +02:00
|
|
|
install:
|
2017-03-28 04:53:47 +02:00
|
|
|
- ci_step_install
|
2017-03-26 06:22:47 +02:00
|
|
|
|
2016-09-28 15:10:15 +02:00
|
|
|
script:
|
2017-03-28 04:53:47 +02:00
|
|
|
- ci_step_script
|
2017-03-26 06:22:47 +02:00
|
|
|
|
2016-10-10 12:05:25 +02:00
|
|
|
after_success:
|
2017-03-28 04:53:47 +02:00
|
|
|
- ci_step_success
|
2017-03-26 06:22:47 +02:00
|
|
|
|
2017-03-25 05:00:42 +01:00
|
|
|
after_failure:
|
2017-03-28 04:53:47 +02:00
|
|
|
- ci_step_failure
|