Files
dashboard/Jenkinsfile
Hawk a6a68a3ead
Some checks failed
SimcoDash/simcompanies-dashboard/pipeline/head There was a failure building this commit
added scripts
2020-05-13 00:02:31 +02:00

28 lines
567 B
Groovy

pipeline {
agent any
stages {
stage('Environment') {
steps {
sh 'git --version'
sh 'printenv'
}
}
stage('Build Frontend') {
steps {
sh './jenkins/buildFrontend.sh'
}
}
stage('Deploy Backend') {
steps {
sh './jenkins/deployBackend.sh'
}
}
stage('Deploy Frontend') {
steps {
sh './jenkins/deployFrontend.sh'
}
}
}
}