From 560dce66e4ec36246d4817bd2c636544036dc9eb Mon Sep 17 00:00:00 2001 From: Tigran Mkrtchyan Date: Thu, 7 Sep 2023 11:18:36 +0200 Subject: [PATCH] ci: use almalinux9-minimal images for rpm signing --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4dda2f7b68e..2011332a215 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -164,10 +164,10 @@ container: sign_rpm: stage: sign - image: almalinux:8 + image: almalinux:9-minimal needs: ["rpm"] script: - - dnf install -y rpm-sign + - microdnf install -y rpm-sign - echo $DCACHE_ORG_PGP_KEY | base64 -d -i > secret.gpg - gpg --quiet --batch --yes --allow-secret-key-import --passphrase="$DCACHE_ORG_PGP_KEY_PASS" --import secret.gpg - gpg -a --export "$DCACHE_ORG_KEY_NAME" > RPM-GPG-KEY @@ -180,10 +180,10 @@ sign_rpm: sign_srm_client_rpm: stage: sign - image: almalinux:8 + image: almalinux:9-minimal needs: ["srm_client_rpm"] script: - - dnf install -y rpm-sign + - microdnf install -y rpm-sign - echo $DCACHE_ORG_PGP_KEY | base64 -d -i > secret.gpg - gpg --quiet --batch --yes --allow-secret-key-import --passphrase="$DCACHE_ORG_PGP_KEY_PASS" --import secret.gpg - gpg -a --export "$DCACHE_ORG_KEY_NAME" > RPM-GPG-KEY