.travis.yml 500 B

12345678910111213141516
  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