16fee101d9
This folds the static checks into using the base job template rules, introducing one new variable - QEMU_JOB_ONLY_FORKS - a job that should never run on an upstream pipeline. The information it reports is only applicable to contributors in a pre-submission scenario, not time of merge. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20220526110705.59952-4-berrange@redhat.com> [AJB: fix typo] Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20220527153603.887929-31-alex.bennee@linaro.org>
49 lines
993 B
YAML
49 lines
993 B
YAML
check-patch:
|
|
extends: .base_job_template
|
|
stage: build
|
|
image: python:3.10-alpine
|
|
needs: []
|
|
script:
|
|
- .gitlab-ci.d/check-patch.py
|
|
variables:
|
|
GIT_DEPTH: 1000
|
|
QEMU_JOB_ONLY_FORKS: 1
|
|
before_script:
|
|
- apk -U add git perl
|
|
allow_failure: true
|
|
|
|
check-dco:
|
|
extends: .base_job_template
|
|
stage: build
|
|
image: python:3.10-alpine
|
|
needs: []
|
|
script: .gitlab-ci.d/check-dco.py
|
|
variables:
|
|
GIT_DEPTH: 1000
|
|
before_script:
|
|
- apk -U add git
|
|
|
|
check-python-pipenv:
|
|
extends: .base_job_template
|
|
stage: test
|
|
image: $CI_REGISTRY_IMAGE/qemu/python:latest
|
|
script:
|
|
- make -C python check-pipenv
|
|
variables:
|
|
GIT_DEPTH: 1
|
|
needs:
|
|
job: python-container
|
|
|
|
check-python-tox:
|
|
extends: .base_job_template
|
|
stage: test
|
|
image: $CI_REGISTRY_IMAGE/qemu/python:latest
|
|
script:
|
|
- make -C python check-tox
|
|
variables:
|
|
GIT_DEPTH: 1
|
|
QEMU_TOX_EXTRA_ARGS: --skip-missing-interpreters=false
|
|
QEMU_JOB_OPTIONAL: 1
|
|
needs:
|
|
job: python-container
|