Delete whats left and build npm

This commit is contained in:
kargor8 2020-12-10 17:18:02 +01:00
parent c96dd4f567
commit 8530f3e940

10
Jenkinsfile vendored
View File

@ -13,14 +13,20 @@ pipeline {
dir('SessionCompanion') { dir('SessionCompanion') {
sh "echo $USER" sh "echo $USER"
withEnv(["HOME=${env.WORKSPACE}"]){ withEnv(["HOME=${env.WORKSPACE}"]){
dir ('SessionCompanion/ClientApp') {
sh 'npm install'
}
sh 'dotnet build' sh 'dotnet build'
}
} }
} }
} }
} }
stage('Clarify') { stage('Clear') {
steps { steps {
sh "echo Dziala" withEnv(["HOME=${env.WORKSPACE}"]){
sh 'rm -rf .local'
}
} }
} }
} }