1234567891011121314151617181920212223242526272829 |
- include:
- - project: 'QubesOS/qubes-continuous-integration'
- file: '/r4.1/gitlab-base.yml'
- - project: 'QubesOS/qubes-continuous-integration'
- file: '/r4.1/gitlab-dom0.yml'
- checks:pylint:
- stage: checks
- before_script:
- - sudo dnf install -y python3-pip
- - git clone https://github.com/QubesOS/qubes-core-qrexec ~/qubes-core-qrexec
- - pip3 install --quiet -r ci/requirements.txt
- script:
- - PYTHONPATH=test-packages:~/qubes-core-qrexec python3 -m pylint qubes
- checks:tests:
- stage: checks
- tags:
- - short-living-job
- - vm-runner
- before_script:
- # vim-common for xxd
- - sudo dnf install -y lvm2 vim-common python3-lxml python3-docutils
- - git clone https://github.com/QubesOS/qubes-core-qrexec ~/qubes-core-qrexec
- - pip3 install --user --quiet -r ci/requirements.txt
- script:
- - PYTHONPATH=test-packages:~/qubes-core-qrexec ./run-tests
- after_script:
- - ci/codecov-wrapper -F unittests
|