mirror of
https://gitlab.com/virt-viewer/virt-viewer.git
synced 2025-01-03 01:17:46 +03:00
ae4f4ea972
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
18 lines
422 B
YAML
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
|