.travis.yml 484 B

12345678910111213141516171819
  1. sudo: required
  2. dist: xenial
  3. language: python
  4. python:
  5. - '3.5'
  6. install:
  7. - pip install --quiet -r ci/requirements.txt
  8. - git clone https://github.com/QubesOS/qubes-builder ~/qubes-builder
  9. script:
  10. - PYTHONPATH=test-packages pylint --rcfile=ci/pylintrc qubesmanager
  11. - ~/qubes-builder/scripts/travis-build
  12. env:
  13. - DIST_DOM0=fc25 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1
  14. # don't build tags which are meant for code signing only
  15. branches:
  16. except:
  17. - /.*_.*/
  18. - build