From 569e86b0ce6e4390bd3ab9e2cb5fc928654ef3b5 Mon Sep 17 00:00:00 2001 From: BugKing Date: Tue, 30 Mar 2021 11:48:44 +0800 Subject: [PATCH] =?UTF-8?q?build:=20mvn=E6=89=93=E5=8C=85=E5=89=8D?= =?UTF-8?q?=E5=85=88=E5=AE=89=E8=A3=85=E5=89=8D=E7=AB=AF=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 994ddca141..653ff55bbd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,6 +13,9 @@ pipeline { stage('Build/Test') { steps { configFileProvider([configFile(fileId: 'metersphere-maven', targetLocation: 'settings.xml')]) { + sh "cd frontend" + sh "yarn install" + sh "cd .." sh "mvn clean package --settings ./settings.xml" } }