1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- sudo: required
- dist: trusty
- language: python
- python:
- - '2.7'
- - '3.4'
- - '3.5'
- install:
- - pip install --quiet docutils
- - pip install --quiet -r ci/requirements.txt
- - git clone https://github.com/"${TRAVIS_REPO_SLUG%%/*}"/qubes-builder ~/qubes-builder
- script:
- - test -z "$TESTS_ONLY" || python setup.py build
- - test -z "$TESTS_ONLY" || { cd build/lib; PYTHONPATH=../../test-packages pylint --rcfile=../../.pylintrc qubesadmin; }
- - test -z "$TESTS_ONLY" || { cd build/lib; ROOTDIR=../.. ../../run-tests; }
- - test -n "$TESTS_ONLY" || ~/qubes-builder/scripts/travis-build
- env:
- - TESTS_ONLY=1 ENABLE_SLOW_TESTS=1
- after_success:
- - codecov
- jobs:
- include:
- - env: DIST_DOM0=fc25 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1 TESTS_ONLY=
- python: '3.5'
- - env: DISTS_VM=fc24 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1 TESTS_ONLY=
- python: '3.5'
- - env: DISTS_VM=fc25 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1 TESTS_ONLY=
- python: '3.5'
- - env: DISTS_VM=jessie USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1 TESTS_ONLY=
- python: '3.4'
- - env: DISTS_VM=stretch USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1 TESTS_ONLY=
- python: '3.5'
- - stage: deploy
- python: '3.5'
- env: DIST_DOM0=fc25 TESTS_ONLY=
- script: ~/qubes-builder/scripts/travis-deploy
- # don't build tags which are meant for code signing only
- branches:
- except:
- - /.*_.*/
- addons:
- apt:
- packages:
- - debootstrap
- # vim: ts=2 sts=2 sw=2 et
|