xref: /qemu/.gitlab-ci.d/static_checks.yml (revision f659e658)
1check-patch:
2  stage: build
3  image: $CI_REGISTRY_IMAGE/qemu/centos8:latest
4  needs:
5    job: amd64-centos8-container
6  script: .gitlab-ci.d/check-patch.py
7  except:
8    variables:
9      - $CI_PROJECT_NAMESPACE == 'qemu-project' && $CI_COMMIT_BRANCH == 'master'
10  variables:
11    GIT_DEPTH: 1000
12  allow_failure: true
13
14check-dco:
15  stage: build
16  image: $CI_REGISTRY_IMAGE/qemu/centos8:latest
17  needs:
18    job: amd64-centos8-container
19  script: .gitlab-ci.d/check-dco.py
20  except:
21    variables:
22      - $CI_PROJECT_NAMESPACE == 'qemu-project' && $CI_COMMIT_BRANCH == 'master'
23  variables:
24    GIT_DEPTH: 1000
25