Some checks failed
SimcoDash/simcompanies-dashboard/pipeline/head There was a failure building this commit
28 lines
567 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|