.travis.yml 764 B

1234567891011121314151617181920212223
  1. sudo: required
  2. dist: bionic
  3. language: python
  4. python:
  5. - '3.5'
  6. install:
  7. - pip install --quiet -r ci/requirements.txt
  8. - git clone https://github.com/QubesOS/qubes-builder ~/qubes-builder
  9. script:
  10. - PYTHONPATH=test-packages pylint --rcfile=ci/pylintrc qubesmanager
  11. - ~/qubes-builder/scripts/travis-build
  12. env:
  13. - DIST_DOM0=fc25 USE_QUBES_REPO_VERSION=4.0 USE_QUBES_REPO_TESTING=1
  14. - DIST_DOM0=fc31 USE_QUBES_REPO_VERSION=4.1 USE_QUBES_REPO_TESTING=1
  15. - DISTS_VM=fc30 USE_QUBES_REPO_VERSION=4.1 USE_QUBES_REPO_TESTING=1
  16. - DISTS_VM=fc31 USE_QUBES_REPO_VERSION=4.1 USE_QUBES_REPO_TESTING=1
  17. - DISTS_VM=centos7 USE_QUBES_REPO_VERSION=4.1 USE_QUBES_REPO_TESTING=1
  18. # don't build tags which are meant for code signing only
  19. branches:
  20. except:
  21. - /.*_.*/
  22. - build