.travis.yml 757 B

12345678910111213141516171819202122232425262728293031
  1. sudo: required
  2. dist: trusty
  3. language: python
  4. python:
  5. - '3.5'
  6. install:
  7. - pip install --quiet -r ci/requirements.txt
  8. - git clone https://github.com/"${TRAVIS_REPO_SLUG%%/*}"/qubes-builder ~/qubes-builder
  9. script:
  10. - PYTHONPATH=test-packages pylint --rcfile=ci/pylintrc qubes qubespolicy
  11. - ./run-tests --no-syslog
  12. - ~/qubes-builder/scripts/travis-build
  13. env:
  14. - DIST_DOM0=fc25 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1
  15. - DIST_DOM0=fc29 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1
  16. after_success:
  17. - codecov -F unittests
  18. - ~/qubes-builder/scripts/travis-deploy
  19. # don't build tags which are meant for code signing only
  20. branches:
  21. except:
  22. - /.*_.*/
  23. addons:
  24. apt:
  25. packages:
  26. - debootstrap
  27. # vim: ts=2 sts=2 sw=2 et