From 12a3b14190bc59ef1e5717a300c212ea7217528e Mon Sep 17 00:00:00 2001 From: nhyatt Date: Mon, 26 Sep 2022 19:34:53 -0500 Subject: [PATCH] use /tmp for npm cache --- build-k8s-lenz.jenkins | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-k8s-lenz.jenkins b/build-k8s-lenz.jenkins index cec80ed..0510837 100644 --- a/build-k8s-lenz.jenkins +++ b/build-k8s-lenz.jenkins @@ -134,7 +134,9 @@ pipeline { echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | tee /etc/apt/sources.list.d/yarn.list apt-get update apt-get install --no-install-recommends -y yarn nodejs + mkdir -p /tmp/npm/cache cd "${workspace}/lens" + export npm_config_cache=/tmp/npm/cache make build """ }