[perl PATCH v4 0/3] gitlab: introduce CI coverage

Daniel P. Berrangé posted 3 patches 4 years ago
Failed in applying to current master (apply log)
.gitlab-ci.yml                       | 170 +++++++++++++++++++++++++++
.gitpublish                          |   4 -
CONTRIBUTING.rst                     |  28 +++++
ci/README.rst                        |  12 ++
ci/libvirt-centos-7.Dockerfile       |  97 +++++++++++++++
ci/libvirt-centos-8.Dockerfile       |  68 +++++++++++
ci/libvirt-debian-10.Dockerfile      |  68 +++++++++++
ci/libvirt-debian-9.Dockerfile       |  71 +++++++++++
ci/libvirt-debian-sid.Dockerfile     |  68 +++++++++++
ci/libvirt-fedora-31.Dockerfile      |  66 +++++++++++
ci/libvirt-fedora-32.Dockerfile      |  66 +++++++++++
ci/libvirt-fedora-rawhide.Dockerfile |  67 +++++++++++
ci/libvirt-opensuse-151.Dockerfile   |  66 +++++++++++
ci/libvirt-ubuntu-1804.Dockerfile    |  71 +++++++++++
ci/libvirt-ubuntu-2004.Dockerfile    |  68 +++++++++++
ci/refresh                           |  22 ++++
16 files changed, 1008 insertions(+), 4 deletions(-)
delete mode 100644 .gitpublish
create mode 100644 CONTRIBUTING.rst
create mode 100644 ci/README.rst
create mode 100644 ci/libvirt-centos-7.Dockerfile
create mode 100644 ci/libvirt-centos-8.Dockerfile
create mode 100644 ci/libvirt-debian-10.Dockerfile
create mode 100644 ci/libvirt-debian-9.Dockerfile
create mode 100644 ci/libvirt-debian-sid.Dockerfile
create mode 100644 ci/libvirt-fedora-31.Dockerfile
create mode 100644 ci/libvirt-fedora-32.Dockerfile
create mode 100644 ci/libvirt-fedora-rawhide.Dockerfile
create mode 100644 ci/libvirt-opensuse-151.Dockerfile
create mode 100644 ci/libvirt-ubuntu-1804.Dockerfile
create mode 100644 ci/libvirt-ubuntu-2004.Dockerfile
create mode 100755 ci/refresh
[perl PATCH v4 0/3] gitlab: introduce CI coverage
Posted by Daniel P. Berrangé 4 years ago
This series introduces CI jobs for the Perl binding, enabling the switch
over to use of Merge Requests with pre-merge build validation.

v1: https://www.redhat.com/archives/libvir-list/2020-April/msg01157.html
v2: https://www.redhat.com/archives/libvir-list/2020-April/msg01408.html

This is a different approach from v1, because we don't inherit from the
main libvirt container images. Instead we use the libvirt-minimal
project as a dependancy. The cost is that the container build stage is
more expensive, but the main project build stage is cheaper. This is a
net win because the container build stage is cached so is only a penalty
the first time, or when the distro parent image has changes to pull in.
It also makes the CI process of the binding more self-contained avoiding
by avoiding a dep on the container image for libvirt.

Daniel P. Berrangé (3):
  gitlab: add CI jobs for validating build across platforms
  gitlab: add a simple job that publishes the API docs as HTML
  gitlab: add CONTRIBUTING.rst file to indicate use of merge requests

 .gitlab-ci.yml                       | 170 +++++++++++++++++++++++++++
 .gitpublish                          |   4 -
 CONTRIBUTING.rst                     |  28 +++++
 ci/README.rst                        |  12 ++
 ci/libvirt-centos-7.Dockerfile       |  97 +++++++++++++++
 ci/libvirt-centos-8.Dockerfile       |  68 +++++++++++
 ci/libvirt-debian-10.Dockerfile      |  68 +++++++++++
 ci/libvirt-debian-9.Dockerfile       |  71 +++++++++++
 ci/libvirt-debian-sid.Dockerfile     |  68 +++++++++++
 ci/libvirt-fedora-31.Dockerfile      |  66 +++++++++++
 ci/libvirt-fedora-32.Dockerfile      |  66 +++++++++++
 ci/libvirt-fedora-rawhide.Dockerfile |  67 +++++++++++
 ci/libvirt-opensuse-151.Dockerfile   |  66 +++++++++++
 ci/libvirt-ubuntu-1804.Dockerfile    |  71 +++++++++++
 ci/libvirt-ubuntu-2004.Dockerfile    |  68 +++++++++++
 ci/refresh                           |  22 ++++
 16 files changed, 1008 insertions(+), 4 deletions(-)
 delete mode 100644 .gitpublish
 create mode 100644 CONTRIBUTING.rst
 create mode 100644 ci/README.rst
 create mode 100644 ci/libvirt-centos-7.Dockerfile
 create mode 100644 ci/libvirt-centos-8.Dockerfile
 create mode 100644 ci/libvirt-debian-10.Dockerfile
 create mode 100644 ci/libvirt-debian-9.Dockerfile
 create mode 100644 ci/libvirt-debian-sid.Dockerfile
 create mode 100644 ci/libvirt-fedora-31.Dockerfile
 create mode 100644 ci/libvirt-fedora-32.Dockerfile
 create mode 100644 ci/libvirt-fedora-rawhide.Dockerfile
 create mode 100644 ci/libvirt-opensuse-151.Dockerfile
 create mode 100644 ci/libvirt-ubuntu-1804.Dockerfile
 create mode 100644 ci/libvirt-ubuntu-2004.Dockerfile
 create mode 100755 ci/refresh

-- 
2.26.2