.travis.yml 763 B

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