.travis.yml 577 B

1234567891011121314151617181920212223
  1. sudo: required
  2. dist: trusty
  3. language: python
  4. python:
  5. - '2.7'
  6. install:
  7. - pip install -r ci/requirements.txt
  8. - git clone https://github.com/QubesOS/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. addons:
  18. apt:
  19. packages:
  20. - debootstrap
  21. # vim: ts=2 sts=2 sw=2 et