2021-05-19 20:54:59 +02:00
|
|
|
check-patch:
|
2022-05-27 17:36:00 +02:00
|
|
|
extends: .base_job_template
|
2021-05-19 20:54:59 +02:00
|
|
|
stage: build
|
2022-05-16 10:23:10 +02:00
|
|
|
image: python:3.10-alpine
|
|
|
|
needs: []
|
2021-06-02 17:32:47 +02:00
|
|
|
script:
|
|
|
|
- .gitlab-ci.d/check-patch.py
|
2021-05-19 20:54:59 +02:00
|
|
|
variables:
|
|
|
|
GIT_DEPTH: 1000
|
2022-05-27 17:36:00 +02:00
|
|
|
QEMU_JOB_ONLY_FORKS: 1
|
2022-05-16 10:23:10 +02:00
|
|
|
before_script:
|
|
|
|
- apk -U add git perl
|
2022-05-27 17:36:00 +02:00
|
|
|
allow_failure: true
|
2021-05-19 20:54:59 +02:00
|
|
|
|
|
|
|
check-dco:
|
2022-05-27 17:36:00 +02:00
|
|
|
extends: .base_job_template
|
2021-05-19 20:54:59 +02:00
|
|
|
stage: build
|
2022-05-16 10:23:10 +02:00
|
|
|
image: python:3.10-alpine
|
|
|
|
needs: []
|
2021-05-19 20:54:59 +02:00
|
|
|
script: .gitlab-ci.d/check-dco.py
|
|
|
|
variables:
|
|
|
|
GIT_DEPTH: 1000
|
2022-05-16 10:23:10 +02:00
|
|
|
before_script:
|
|
|
|
- apk -U add git
|
2021-05-27 23:17:15 +02:00
|
|
|
|
|
|
|
check-python-pipenv:
|
2022-05-27 17:36:00 +02:00
|
|
|
extends: .base_job_template
|
2021-05-27 23:17:15 +02:00
|
|
|
stage: test
|
|
|
|
image: $CI_REGISTRY_IMAGE/qemu/python:latest
|
|
|
|
script:
|
2021-06-29 23:43:15 +02:00
|
|
|
- make -C python check-pipenv
|
2021-05-27 23:17:15 +02:00
|
|
|
variables:
|
|
|
|
GIT_DEPTH: 1
|
|
|
|
needs:
|
|
|
|
job: python-container
|
|
|
|
|
|
|
|
check-python-tox:
|
2022-05-27 17:36:00 +02:00
|
|
|
extends: .base_job_template
|
2021-05-27 23:17:15 +02:00
|
|
|
stage: test
|
|
|
|
image: $CI_REGISTRY_IMAGE/qemu/python:latest
|
|
|
|
script:
|
|
|
|
- make -C python check-tox
|
|
|
|
variables:
|
|
|
|
GIT_DEPTH: 1
|
2021-06-30 20:45:46 +02:00
|
|
|
QEMU_TOX_EXTRA_ARGS: --skip-missing-interpreters=false
|
2022-05-27 17:36:00 +02:00
|
|
|
QEMU_JOB_OPTIONAL: 1
|
2021-05-27 23:17:15 +02:00
|
|
|
needs:
|
|
|
|
job: python-container
|