.gitlab-ci.yml 941 B

1234567891011121314151617181920212223242526272829
  1. include:
  2. - project: 'QubesOS/qubes-continuous-integration'
  3. file: '/r4.1/gitlab-base.yml'
  4. - project: 'QubesOS/qubes-continuous-integration'
  5. file: '/r4.1/gitlab-dom0.yml'
  6. checks:pylint:
  7. stage: checks
  8. before_script:
  9. - sudo dnf install -y python3-pip
  10. - git clone https://github.com/QubesOS/qubes-core-qrexec ~/qubes-core-qrexec
  11. - pip3 install --quiet -r ci/requirements.txt
  12. script:
  13. - PYTHONPATH=test-packages:~/qubes-core-qrexec python3 -m pylint qubes
  14. checks:tests:
  15. stage: checks
  16. tags:
  17. - short-living-job
  18. - vm-runner
  19. before_script:
  20. # vim-common for xxd
  21. - sudo dnf install -y lvm2 vim-common python3-lxml python3-docutils
  22. - git clone https://github.com/QubesOS/qubes-core-qrexec ~/qubes-core-qrexec
  23. - pip3 install --user --quiet -r ci/requirements.txt
  24. script:
  25. - PYTHONPATH=test-packages:~/qubes-core-qrexec ./run-tests
  26. after_script:
  27. - ci/codecov-wrapper -F unittests