virt-viewer/.gitlab-ci.yml
Daniel P. Berrangé ae4f4ea972 gitlab: introduce minimal CI job for checking DCO signoff
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2020-04-03 16:57:02 +01:00

18 lines
422 B
YAML

stages:
- prebuild
# Check that all commits are signed-off for the DCO. Skip
# on master branch and -maint branches, since we only need
# to test developer's personal branches.
dco:
stage: prebuild
# XXX change to a virt-viewer specific image later
image: quay.io/libvirt/buildenv-libvirt-fedora-31:latest
script:
- ./scripts/require-dco.py
only:
- branches
except:
- /^v.*-maint$/
- master