mirror of
https://gitlab.com/virt-viewer/virt-viewer.git
synced 2025-01-03 01:17:46 +03:00
gitlab: don't block container / build jobs on DCO check
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
f03e009eb7
commit
8eb7ff6688
@ -1,7 +1,7 @@
|
|||||||
stages:
|
stages:
|
||||||
- prebuild
|
|
||||||
- containers
|
- containers
|
||||||
- builds
|
- builds
|
||||||
|
- sanity_checks
|
||||||
|
|
||||||
.container_job_template: &container_job_definition
|
.container_job_template: &container_job_definition
|
||||||
image: docker:stable
|
image: docker:stable
|
||||||
@ -120,7 +120,8 @@ stages:
|
|||||||
# this test on developer's personal forks from which
|
# this test on developer's personal forks from which
|
||||||
# merge requests are submitted
|
# merge requests are submitted
|
||||||
check-dco:
|
check-dco:
|
||||||
stage: prebuild
|
stage: sanity_checks
|
||||||
|
needs: []
|
||||||
image: registry.gitlab.com/libvirt/libvirt-ci/check-dco:master
|
image: registry.gitlab.com/libvirt/libvirt-ci/check-dco:master
|
||||||
script:
|
script:
|
||||||
- /check-dco virt-viewer
|
- /check-dco virt-viewer
|
||||||
@ -195,7 +196,7 @@ mingw64-fedora-rawhide-container:
|
|||||||
|
|
||||||
|
|
||||||
codestyle:
|
codestyle:
|
||||||
stage: builds
|
stage: sanity_checks
|
||||||
image: $CI_REGISTRY_IMAGE/ci-centos-8:latest
|
image: $CI_REGISTRY_IMAGE/ci-centos-8:latest
|
||||||
needs:
|
needs:
|
||||||
- x86-centos-8-container
|
- x86-centos-8-container
|
||||||
@ -207,6 +208,8 @@ codestyle:
|
|||||||
|
|
||||||
x86-centos-7-dist-build:
|
x86-centos-7-dist-build:
|
||||||
<<: *dist_native_build_job_definition
|
<<: *dist_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-centos-7-container
|
||||||
variables:
|
variables:
|
||||||
NAME: centos-7
|
NAME: centos-7
|
||||||
# git is too old for -C args
|
# git is too old for -C args
|
||||||
@ -215,59 +218,81 @@ x86-centos-7-dist-build:
|
|||||||
|
|
||||||
x86-centos-8-git-build:
|
x86-centos-8-git-build:
|
||||||
<<: *git_native_build_job_definition
|
<<: *git_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-centos-8-container
|
||||||
variables:
|
variables:
|
||||||
NAME: centos-8
|
NAME: centos-8
|
||||||
RPM: skip
|
RPM: skip
|
||||||
|
|
||||||
x86-centos-stream-dist-build:
|
x86-centos-stream-dist-build:
|
||||||
<<: *git_native_build_job_definition
|
<<: *git_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-centos-stream-container
|
||||||
variables:
|
variables:
|
||||||
NAME: centos-stream
|
NAME: centos-stream
|
||||||
RPM: skip
|
RPM: skip
|
||||||
|
|
||||||
x86-debian-10-dist-build:
|
x86-debian-10-dist-build:
|
||||||
<<: *dist_native_build_job_definition
|
<<: *dist_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-debian-10-container
|
||||||
variables:
|
variables:
|
||||||
NAME: debian-10
|
NAME: debian-10
|
||||||
|
|
||||||
x86-debian-sid-dist-build:
|
x86-debian-sid-dist-build:
|
||||||
<<: *dist_native_build_job_definition
|
<<: *dist_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-debian-sid-container
|
||||||
variables:
|
variables:
|
||||||
NAME: debian-sid
|
NAME: debian-sid
|
||||||
|
|
||||||
x86-fedora-32-dist-build:
|
x86-fedora-32-dist-build:
|
||||||
<<: *dist_native_build_job_definition
|
<<: *dist_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-fedora-32-container
|
||||||
variables:
|
variables:
|
||||||
NAME: fedora-32
|
NAME: fedora-32
|
||||||
|
|
||||||
x86-fedora-33-dist-build:
|
x86-fedora-33-dist-build:
|
||||||
<<: *dist_native_build_job_definition
|
<<: *dist_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-fedora-33-container
|
||||||
variables:
|
variables:
|
||||||
NAME: fedora-33
|
NAME: fedora-33
|
||||||
|
|
||||||
x86-fedora-rawhide-dist-build:
|
x86-fedora-rawhide-dist-build:
|
||||||
<<: *dist_native_build_job_definition
|
<<: *dist_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-fedora-rawhide-container
|
||||||
variables:
|
variables:
|
||||||
NAME: fedora-rawhide
|
NAME: fedora-rawhide
|
||||||
|
|
||||||
x86-opensuse-152-dist-build:
|
x86-opensuse-152-dist-build:
|
||||||
<<: *dist_native_build_job_definition
|
<<: *dist_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-opensuse-152-container
|
||||||
variables:
|
variables:
|
||||||
NAME: opensuse-152
|
NAME: opensuse-152
|
||||||
RPM: skip
|
RPM: skip
|
||||||
|
|
||||||
x86-ubuntu-1804-dist-build:
|
x86-ubuntu-1804-dist-build:
|
||||||
<<: *dist_native_build_job_definition
|
<<: *dist_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-ubuntu-1804-container
|
||||||
variables:
|
variables:
|
||||||
NAME: ubuntu-1804
|
NAME: ubuntu-1804
|
||||||
|
|
||||||
x86-ubuntu-2004-dist-build:
|
x86-ubuntu-2004-dist-build:
|
||||||
<<: *dist_native_build_job_definition
|
<<: *dist_native_build_job_definition
|
||||||
|
needs:
|
||||||
|
- x86-ubuntu-2004-container
|
||||||
variables:
|
variables:
|
||||||
NAME: ubuntu-2004
|
NAME: ubuntu-2004
|
||||||
|
|
||||||
mingw32-fedora-rawhide-git-build:
|
mingw32-fedora-rawhide-git-build:
|
||||||
<<: *git_cross_build_default_job_definition
|
<<: *git_cross_build_default_job_definition
|
||||||
|
needs:
|
||||||
|
- mingw32-fedora-rawhide-container
|
||||||
variables:
|
variables:
|
||||||
NAME: fedora-rawhide-cross-mingw32
|
NAME: fedora-rawhide-cross-mingw32
|
||||||
artifacts:
|
artifacts:
|
||||||
@ -279,6 +304,8 @@ mingw32-fedora-rawhide-git-build:
|
|||||||
|
|
||||||
mingw64-fedora-rawhide-git-build:
|
mingw64-fedora-rawhide-git-build:
|
||||||
<<: *git_cross_build_default_job_definition
|
<<: *git_cross_build_default_job_definition
|
||||||
|
needs:
|
||||||
|
- mingw64-fedora-rawhide-container
|
||||||
variables:
|
variables:
|
||||||
NAME: fedora-rawhide-cross-mingw64
|
NAME: fedora-rawhide-cross-mingw64
|
||||||
artifacts:
|
artifacts:
|
||||||
|
Loading…
Reference in New Issue
Block a user