]> xenbits.xensource.com Git - xen-guest-agent.git/commitdiff
ci: use full path for container images
authorYann Dirson <yann.dirson@vates.fr>
Wed, 20 Dec 2023 16:31:14 +0000 (17:31 +0100)
committerYann Dirson <yann.dirson@vates.fr>
Wed, 20 Dec 2023 16:33:18 +0000 (17:33 +0100)
Much easier to copy-paste them on a podman command-line, alias files
are not always up to date.

Signed-off-by: Yann Dirson <yann.dirson@vates.fr>
.gitlab-ci.yml

index e40137e9e89d105fda4d7c8f4170ae1ce7b7c9c3..79970b62ec923450c0efd4bbc28ee8e206140813 100644 (file)
@@ -14,7 +14,7 @@ workflow:
     - if: $CI_COMMIT_TAG
 
 variables:
-  LINUX_RUSTIMG: "rust:buster"
+  LINUX_RUSTIMG: "docker.io/library/rust:buster"
   PKG_ROOT: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic"
 
 .build-template:
@@ -89,7 +89,7 @@ variables:
 
 env-setup:
   stage: setup
-  image: alpine:latest
+  image: docker.io/library/alpine:latest
   before_script:
     - |
       if [ "$CI_COMMIT_REF_NAME" = "main" ]; then
@@ -240,7 +240,7 @@ pkg-source:
 
 pkg-deb-amd64:
   stage: package
-  image: "debian:10"
+  image: docker.io/library/debian:10
   extends:
     - .not-scheduled
   needs:
@@ -299,7 +299,7 @@ deploy-deb-amd64:
   needs:
     - env-setup
     - pkg-deb-amd64
-  image: "curlimages/curl:latest"
+  image: docker.io/curlimages/curl:latest
   script:
     - cd target/release
     - for FILE in *; do
@@ -312,7 +312,7 @@ deploy-deb-amd64:
 
 pkg-rpm-x86_64:
   stage: package
-  image: "fedora:37"
+  image: registry.fedoraproject.org/fedora:37
   extends:
     - .not-scheduled
   needs: