From 905ef57ee7e6bfce0ee30b964a6d65baf5ffb70a Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Wed, 4 Jun 2025 13:43:26 +0200 Subject: [PATCH] do not duplicate architecture var --- vars/multiarch_container.groovy | 3 --- 1 file changed, 3 deletions(-) diff --git a/vars/multiarch_container.groovy b/vars/multiarch_container.groovy index 9869cad..fa78a45 100644 --- a/vars/multiarch_container.groovy +++ b/vars/multiarch_container.groovy @@ -34,7 +34,6 @@ def call(Map config = [:]) { } parallel parallelStages - env.ARCHITECTURES = architectures.join(',') } } } @@ -43,8 +42,6 @@ def call(Map config = [:]) { agent any steps { script { - def architectures = env.ARCHITECTURES.split(',') - for (arch in architectures) { unstash "${arch}-image" sh "podman load -i ${arch}-${env.BUILD_NUMBER}.tar"