ssh-audit/.travis.yml

81 lines
1.6 KiB
YAML
Raw Normal View History

2016-09-28 15:10:15 +02:00
language: python
2017-03-28 04:53:47 +02:00
sudo: false
matrix:
include:
2017-03-28 04:53:47 +02:00
# (default)
- os: linux
python: 2.6
- os: linux
python: 2.7
2017-04-04 23:56:17 +02:00
env: SQ=1
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
python: 3.6
2017-03-31 12:51:05 +02:00
- os: linux
python: pypy
- os: linux
python: pypy3
- os: linux
python: 3.7-dev
2017-03-28 04:53:47 +02:00
# Ubuntu 12.04
- os: linux
dist: precise
2017-03-28 04:53:47 +02:00
language: generic
2017-03-31 12:51:05 +02:00
env: PY_VER=py26,py27,py33,py34,py35,py36,pypy,pypy3 PY_ORIGIN=pyenv
# Ubuntu 14.04
- os: linux
dist: trusty
language: generic
2017-03-31 12:51:05 +02:00
env: PY_VER=py26,py27,py33,py34,py35,py36,pypy,pypy3 PY_ORIGIN=pyenv
# macOS 10.12 Sierra
- os: osx
2017-03-31 01:48:51 +02:00
osx_image: xcode8.3
language: generic
2017-03-31 12:51:05 +02:00
env: PY_VER=py26,py27,py33,py34,py35,py36,pypy,pypy3
2017-03-28 04:53:47 +02:00
# Mac OS X 10.11 El Capitan
- os: osx
2017-03-28 04:53:47 +02:00
osx_image: xcode7.3
language: generic
2017-03-31 12:51:05 +02:00
env: PY_VER=py26,py27,py33,py34,py35,py36,pypy,pypy3
2017-03-28 04:53:47 +02:00
# Mac OS X 10.10 Yosemite
- os: osx
2017-03-28 04:53:47 +02:00
osx_image: xcode6.4
language: generic
2017-03-31 12:51:05 +02:00
env: PY_VER=py26,py27,py33,py34,py35,py36,pypy,pypy3
allow_failures:
2017-03-31 12:51:05 +02:00
# PyPy3 on Travis CI is out of date
- python: pypy3
# Python nightly could fail
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-04-04 23:56:17 +02:00
- $HOME/.bin
before_install:
2017-03-28 04:53:47 +02:00
- source test/tools/ci-linux.sh
- ci_step_before_install
2016-09-28 15:10:15 +02:00
install:
2017-03-28 04:53:47 +02:00
- ci_step_install
2016-09-28 15:10:15 +02:00
script:
2017-03-28 04:53:47 +02:00
- ci_step_script
2016-10-10 12:05:25 +02:00
after_success:
2017-03-28 04:53:47 +02:00
- ci_step_success
after_failure:
2017-03-28 04:53:47 +02:00
- ci_step_failure