qutebrowser/.travis.yml

99 lines
2.2 KiB
YAML
Raw Normal View History

sudo: required
dist: trusty
language: generic
2017-06-19 18:15:35 +02:00
group: edge
2015-06-09 17:20:21 +02:00
2016-03-15 19:03:50 +01:00
matrix:
include:
- os: linux
env: TESTENV=py34-cov
2016-03-15 19:23:49 +01:00
- os: linux
env: DOCKER=debian-jessie
services: docker
- os: linux
env: DOCKER=archlinux
services: docker
- os: linux
env: DOCKER=archlinux-webengine QUTE_BDD_WEBENGINE=true
services: docker
- os: linux
env: DOCKER=ubuntu-xenial
services: docker
2017-02-17 07:02:13 +01:00
- os: linux
language: python
python: 3.6
env: TESTENV=py36-pyqt571
- os: linux
language: python
python: 3.5
2017-02-17 07:02:13 +01:00
env: TESTENV=py35-pyqt58
- os: linux
language: python
python: 3.6
2017-02-17 07:02:13 +01:00
env: TESTENV=py36-pyqt58
2016-03-15 19:03:50 +01:00
- os: osx
2017-02-05 01:42:44 +01:00
env: TESTENV=py36 OSX=elcapitan
osx_image: xcode7.3
2017-02-05 00:13:11 +01:00
# https://github.com/qutebrowser/qutebrowser/issues/2013
# - os: osx
# env: TESTENV=py35 OSX=yosemite
# osx_image: xcode6.4
2016-03-15 19:03:50 +01:00
- os: linux
2017-05-17 21:33:50 +02:00
env: TESTENV=pylint PYTHON=python3.6
language: python
python: 3.6
2016-03-15 19:03:50 +01:00
- os: linux
env: TESTENV=flake8
- os: linux
env: TESTENV=docs
2016-03-15 19:03:50 +01:00
- os: linux
env: TESTENV=vulture
- os: linux
env: TESTENV=misc
- os: linux
env: TESTENV=pyroma
- os: linux
env: TESTENV=check-manifest
- os: linux
env: TESTENV=eslint
2016-10-17 07:25:35 +02:00
allow_failures:
- os: osx
2017-02-05 01:42:44 +01:00
env: TESTENV=py36 OSX=elcapitan
2016-10-17 07:25:35 +02:00
osx_image: xcode7.3
2016-11-16 08:28:36 +01:00
fast_finish: true
2016-03-15 19:03:50 +01:00
2015-07-14 07:17:36 +02:00
cache:
directories:
- $HOME/.cache/pip
- $HOME/build/qutebrowser/qutebrowser/.cache
2015-07-14 07:17:36 +02:00
before_install:
# We need to do this so we pick up the system-wide python properly
- 'export PATH="/usr/bin:$PATH"'
2015-06-09 17:20:21 +02:00
install:
- bash scripts/dev/ci/travis_install.sh
2017-03-05 17:29:22 +01:00
- ulimit -c unlimited
2015-06-09 17:20:21 +02:00
script:
2016-03-15 19:23:49 +01:00
- bash scripts/dev/ci/travis_run.sh
2015-10-05 22:43:01 +02:00
2015-10-21 19:16:49 +02:00
after_success:
- '[[ $TESTENV == *-cov ]] && codecov -e TESTENV -X gcov'
2015-10-21 19:16:49 +02:00
2017-03-05 17:29:22 +01:00
after_failure:
- bash scripts/dev/ci/travis_backtrace.sh
2015-11-30 07:37:04 +01:00
notifications:
webhooks:
- https://buildtimetrend.herokuapp.com/travis
2016-03-15 21:42:48 +01:00
irc:
channels:
2016-07-26 18:18:53 +02:00
- "chat.freenode.net#qutebrowser-dev"
on_success: always
2016-03-15 21:42:48 +01:00
on_failure: always
2016-03-15 22:32:53 +01:00
skip_join: true
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
- "%{compare_url} - %{build_url}"