core-admin/.travis.yml

37 lines
871 B
YAML
Raw Normal View History

sudo: required
dist: xenial
2016-05-25 01:25:40 +02:00
language: python
python:
- '3.5'
virtualenv:
system_site_packages: true
services:
- xvfb
install:
- sudo apt-get -y install python3-gi gir1.2-gtk-3.0
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 qubespolicy
2016-05-25 01:25:40 +02:00
- ./run-tests --no-syslog
- ~/qubes-builder/scripts/travis-build
env:
- DIST_DOM0=fc25 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1
2018-11-22 17:11:25 +01:00
- DIST_DOM0=fc29 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1
2016-06-16 12:54:06 +02:00
2016-06-16 14:30:50 +02:00
after_success:
- codecov -F unittests
2016-06-16 14:30:50 +02:00
- ~/qubes-builder/scripts/travis-deploy
# 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