]> git.proxmox.com Git - mirror_qemu.git/blame - .gitlab-ci.d/static_checks.yml
linux-user/hppa: Detect glibc ABORT_INSTRUCTION and EXCP_BREAK handler
[mirror_qemu.git] / .gitlab-ci.d / static_checks.yml
CommitLineData
f659e658 1check-patch:
16fee101 2 extends: .base_job_template
f659e658 3 stage: build
e4e68c31
TH
4 image: python:3.10-alpine
5 needs: []
b114a0b9 6 script:
b114a0b9 7 - .gitlab-ci.d/check-patch.py
f659e658
PMD
8 variables:
9 GIT_DEPTH: 1000
16fee101 10 QEMU_JOB_ONLY_FORKS: 1
e4e68c31
TH
11 before_script:
12 - apk -U add git perl
16fee101 13 allow_failure: true
f659e658
PMD
14
15check-dco:
16fee101 16 extends: .base_job_template
f659e658 17 stage: build
e4e68c31
TH
18 image: python:3.10-alpine
19 needs: []
f659e658 20 script: .gitlab-ci.d/check-dco.py
f659e658
PMD
21 variables:
22 GIT_DEPTH: 1000
e4e68c31
TH
23 before_script:
24 - apk -U add git
6b9c2777
JS
25
26check-python-pipenv:
16fee101 27 extends: .base_job_template
6b9c2777
JS
28 stage: test
29 image: $CI_REGISTRY_IMAGE/qemu/python:latest
30 script:
6f84d726 31 - make -C python check-pipenv
6b9c2777
JS
32 variables:
33 GIT_DEPTH: 1
34 needs:
35 job: python-container
36
37check-python-tox:
16fee101 38 extends: .base_job_template
6b9c2777
JS
39 stage: test
40 image: $CI_REGISTRY_IMAGE/qemu/python:latest
41 script:
42 - make -C python check-tox
43 variables:
44 GIT_DEPTH: 1
6f651a6d 45 QEMU_TOX_EXTRA_ARGS: --skip-missing-interpreters=false
16fee101 46 QEMU_JOB_OPTIONAL: 1
6b9c2777
JS
47 needs:
48 job: python-container