From 7b7ce071944be819d9dd946009b8c226a56e934f Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Tue, 16 Feb 2021 12:42:29 +0000 Subject: [PATCH] As suggested in the code review --- Jenkinsfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ede5b7f90561..02d4622be0d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -265,11 +265,9 @@ def k8sTest(Map args = [:]) { * This method runs the packaging for ARM */ def packagingArm(Map args = [:]) { - PACKAGES = "docker" def PLATFORMS = [ 'linux/arm64' ].join(' ') withEnv([ - "PLATFORMS=${PLATFORMS}", - "PACKAGES=docker" + "PLATFORMS=${PLATFORMS}" ]) { target(args) }