test3
Some checks failed
SimcoDash/simcompanies-dashboard/pipeline/head There was a failure building this commit

This commit is contained in:
2020-05-13 20:53:22 +02:00
parent 413729b847
commit 86a56bba46

6
Jenkinsfile vendored
View File

@@ -10,17 +10,17 @@ pipeline {
}
stage('Build Frontend') {
steps {
sh './jenkins/buildFrontend.sh'
sh 'sudo ./jenkins/buildFrontend.sh'
}
}
stage('Deploy Backend') {
steps {
sh './jenkins/deployBackend.sh'
sh 'sudo ./jenkins/deployBackend.sh'
}
}
stage('Deploy Frontend') {
steps {
sh './jenkins/deployFrontend.sh'
sh 'sudo ./jenkins/deployFrontend.sh'
}
}
}