From 716ccca5aed04a8d2a3810db0b3ad51cbf9928a6 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Tue, 16 Feb 2021 14:03:03 +0000 Subject: [PATCH] Revert "As suggested in the code review" This reverts commit 7b7ce071944be819d9dd946009b8c226a56e934f. --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 02d4622be0d..ede5b7f9056 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -265,9 +265,11 @@ 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}" + "PLATFORMS=${PLATFORMS}", + "PACKAGES=docker" ]) { target(args) }