From bb5fc58f3af7d82fbca19a513e405fd635dadd07 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Thu, 11 Mar 2021 09:29:08 +1000 Subject: [PATCH] Revert "Fix CI, use docker for a yarn command" This reverts commit afbec0aca96fd860bbaaed0bebf9e5294e6ea325. --- Jenkinsfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e92574dd..74dc0a1e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -144,12 +144,8 @@ pipeline { } steps { dir(path: 'docs') { - sh '''docker run --rm \\ - -v "$(pwd):/app" \\ - -w /app \\ - node:latest \\ - sh -c "yarn install && yarn build" - ''' + sh 'yarn install' + sh 'yarn build' } dir(path: 'docs/.vuepress/dist') {