.travis.yml 753 B

12345678910111213141516171819202122232425262728293031
  1. sudo: required
  2. dist: trusty
  3. language: python
  4. python:
  5. - '2.7'
  6. install:
  7. - pip install --quiet -r ci/requirements.txt
  8. - git clone https://github.com/"${TRAVIS_REPO_SLUG%%/*}"/qubes-builder ~/qubes-builder
  9. # debootstrap in trusty is old...
  10. before_script: sudo ln -s sid /usr/share/debootstrap/scripts/stretch
  11. script:
  12. - PYTHONPATH=test-packages pylint --rcfile=ci/pylintrc qubes
  13. - ./run-tests --no-syslog
  14. - ~/qubes-builder/scripts/travis-build
  15. env:
  16. - DIST_DOM0=fc23 USE_QUBES_REPO_VERSION=3.2 USE_QUBES_REPO_TESTING=1
  17. after_success:
  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