6832189fd7
The pipenv tool was nice in theory, but in practice it's just too hard to update selectively, and it makes using it a pain. The qemu.qmp repo dropped pipenv support a while back and it's been functioning just fine, so I'm backporting that change here to qemu.git. Signed-off-by: John Snow <jsnow@redhat.com> Message-id: 20230210003147.1309376-3-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
49 lines
995 B
YAML
49 lines
995 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-minreqs:
|
|
extends: .base_job_template
|
|
stage: test
|
|
image: $CI_REGISTRY_IMAGE/qemu/python:latest
|
|
script:
|
|
- make -C python check-minreqs
|
|
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
|