2021-05-20 02:54:59 +08:00
|
|
|
check-patch:
|
|
|
|
stage: build
|
|
|
|
image: $CI_REGISTRY_IMAGE/qemu/centos8:latest
|
|
|
|
needs:
|
|
|
|
job: amd64-centos8-container
|
2021-06-02 23:32:47 +08:00
|
|
|
script:
|
|
|
|
- .gitlab-ci.d/check-patch.py
|
2021-05-20 02:54:59 +08:00
|
|
|
variables:
|
|
|
|
GIT_DEPTH: 1000
|
2021-05-25 21:17:10 +08:00
|
|
|
rules:
|
2021-09-18 00:23:29 +08:00
|
|
|
- if: '$CI_PROJECT_NAMESPACE == "qemu-project"'
|
2021-05-25 21:17:10 +08:00
|
|
|
when: never
|
|
|
|
- when: on_success
|
|
|
|
allow_failure: true
|
2021-05-20 02:54:59 +08:00
|
|
|
|
|
|
|
check-dco:
|
|
|
|
stage: build
|
|
|
|
image: $CI_REGISTRY_IMAGE/qemu/centos8:latest
|
|
|
|
needs:
|
|
|
|
job: amd64-centos8-container
|
|
|
|
script: .gitlab-ci.d/check-dco.py
|
|
|
|
variables:
|
|
|
|
GIT_DEPTH: 1000
|
2021-05-25 21:17:10 +08:00
|
|
|
rules:
|
|
|
|
- if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
|
|
|
when: never
|
|
|
|
- when: on_success
|
2021-05-28 05:17:15 +08:00
|
|
|
|
|
|
|
check-python-pipenv:
|
|
|
|
stage: test
|
|
|
|
image: $CI_REGISTRY_IMAGE/qemu/python:latest
|
|
|
|
script:
|
2021-06-30 05:43:15 +08:00
|
|
|
- make -C python check-pipenv
|
2021-05-28 05:17:15 +08:00
|
|
|
variables:
|
|
|
|
GIT_DEPTH: 1
|
|
|
|
needs:
|
|
|
|
job: python-container
|
|
|
|
|
|
|
|
check-python-tox:
|
|
|
|
stage: test
|
|
|
|
image: $CI_REGISTRY_IMAGE/qemu/python:latest
|
|
|
|
script:
|
|
|
|
- make -C python check-tox
|
|
|
|
variables:
|
|
|
|
GIT_DEPTH: 1
|
2021-07-01 02:45:46 +08:00
|
|
|
QEMU_TOX_EXTRA_ARGS: --skip-missing-interpreters=false
|
2021-05-28 05:17:15 +08:00
|
|
|
needs:
|
|
|
|
job: python-container
|
|
|
|
allow_failure: true
|