2016-06-02 11:29:38 +02:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
2016-05-25 01:25:40 +02:00
|
|
|
language: python
|
|
|
|
python:
|
2017-04-03 12:52:45 +02:00
|
|
|
- '3.5'
|
2016-06-13 19:03:46 +02:00
|
|
|
install:
|
2016-06-16 13:07:53 +02:00
|
|
|
- pip install --quiet -r ci/requirements.txt
|
2016-06-16 14:30:50 +02:00
|
|
|
- git clone https://github.com/"${TRAVIS_REPO_SLUG%%/*}"/qubes-builder ~/qubes-builder
|
2016-05-25 01:25:40 +02:00
|
|
|
script:
|
|
|
|
- PYTHONPATH=test-packages pylint --rcfile=ci/pylintrc qubes
|
|
|
|
- ./run-tests --no-syslog
|
2016-06-13 19:03:46 +02:00
|
|
|
- ~/qubes-builder/scripts/travis-build
|
2016-06-02 11:29:38 +02:00
|
|
|
env:
|
2017-04-05 09:56:58 +02:00
|
|
|
- DIST_DOM0=fc25 USE_QUBES_REPO_VERSION=3.2 USE_QUBES_REPO_TESTING=1
|
2016-06-16 12:54:06 +02:00
|
|
|
|
2016-06-16 14:30:50 +02:00
|
|
|
after_success:
|
|
|
|
- ~/qubes-builder/scripts/travis-deploy
|
|
|
|
|
2016-06-16 17:28:34 +02:00
|
|
|
# don't build tags which are meant for code signing only
|
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- /.*_.*/
|
|
|
|
|
2016-06-16 12:54:06 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- debootstrap
|
|
|
|
|
|
|
|
# vim: ts=2 sts=2 sw=2 et
|