]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
ci: Use default image tag "latest"
authorAndrea Bolognani <abologna@redhat.com>
Thu, 11 Jul 2019 10:30:04 +0000 (12:30 +0200)
committerAndrea Bolognani <abologna@redhat.com>
Thu, 11 Jul 2019 13:03:32 +0000 (15:03 +0200)
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>
.gitlab-ci.yml
Makefile.ci

index c1f9f3716630498c025736eee8b38f832d4489c7..b31b4ddbdb2c1d1c1b08636255c6d1fb3ddb8985 100644 (file)
 
 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
index 241c58d2d4e9dd1c6117fbc26477369978d12b65..009d0df8fa74393082b26f1780e6ae95eb807185 100644 (file)
@@ -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