From 319cc0045b33a565c79bd9d156fcdac051945882 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Thu, 11 Jul 2019 12:30:04 +0200 Subject: [PATCH] ci: Use default image tag "latest" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 Reviewed-by: Daniel P. Berrangé --- .gitlab-ci.yml | 18 +++++++++--------- Makefile.ci | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c1f9f37166..b31b4ddbdb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,36 +11,36 @@ debian-9-cross-armv6l: <<: *job_definition - image: quay.io/libvirt/buildenv-debian-9-cross-armv6l:master + 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:master + 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:master + 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:master + 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:master + 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:master + 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:master + 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:master + 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:master + image: quay.io/libvirt/buildenv-debian-sid-cross-mips:latest diff --git a/Makefile.ci b/Makefile.ci index 241c58d2d4..009d0df8fa 100644 --- a/Makefile.ci +++ b/Makefile.ci @@ -53,7 +53,7 @@ CI_IMAGE_PREFIX = quay.io/libvirt/buildenv- # The default tag is ':latest' but if the container # repo above uses different conventions this can override it -CI_IMAGE_TAG = :master +CI_IMAGE_TAG = :latest # We delete the virtual root after completion, set # to 0 if you need to keep it around for debugging -- 2.47.2