libvirt/.gitlab-ci.yml
Andrea Bolognani 319cc0045b ci: Use default image tag "latest"
Up until now, our images have been tagged as "master" instead
of the default "latest" due to the way the build process
worked, but we're using the default now.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
2019-07-11 15:03:32 +02:00

47 lines
1.3 KiB
YAML

.job_template: &job_definition
script:
- mkdir build
- cd build
- ../autogen.sh $CONFIGURE_OPTS || (cat config.log && exit 1)
- make -j $(getconf _NPROCESSORS_ONLN)
# We could run every arch on both versions, but it is a little
# overkill. Instead we run half the jobs on 9 and half the jobs
# on sid to give reasonable cross-coverage.
debian-9-cross-armv6l:
<<: *job_definition
image: quay.io/libvirt/buildenv-debian-9-cross-armv6l:latest
debian-9-cross-mipsel:
<<: *job_definition
image: quay.io/libvirt/buildenv-debian-9-cross-mipsel:latest
debian-9-cross-ppc64le:
<<: *job_definition
image: quay.io/libvirt/buildenv-debian-9-cross-ppc64le:latest
debian-9-cross-s390x:
<<: *job_definition
image: quay.io/libvirt/buildenv-debian-9-cross-s390x:latest
debian-sid-cross-aarch64:
<<: *job_definition
image: quay.io/libvirt/buildenv-debian-sid-cross-aarch64:latest
debian-sid-cross-armv7l:
<<: *job_definition
image: quay.io/libvirt/buildenv-debian-sid-cross-armv7l:latest
debian-sid-cross-i686:
<<: *job_definition
image: quay.io/libvirt/buildenv-debian-sid-cross-i686:latest
debian-sid-cross-mips64el:
<<: *job_definition
image: quay.io/libvirt/buildenv-debian-sid-cross-mips64el:latest
debian-sid-cross-mips:
<<: *job_definition
image: quay.io/libvirt/buildenv-debian-sid-cross-mips:latest