try to use different cache dirextory in container

This commit is contained in:
Hyatt 2022-10-02 12:39:54 -05:00
parent 96e1e85fec
commit 403702d981
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -141,6 +141,10 @@ pipeline {
sh """
apt-get update
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install --no-install-recommends -y rpm
su - node
mkdir "${workspace}/lens/.npm-cache"
npm config set cache "${workspace}/lens/.npm-cache" --global
npm --global cache verify
cd "${workspace}/lens"
make build
"""