This commit is contained in:
pavelbannov 2020-01-13 15:44:26 +03:00
parent d6513a3291
commit 9a6bf07ada

8
build/Jenkinsfile vendored
View File

@ -33,22 +33,22 @@ pipeline {
stages {
stage('Components') {
steps {
sh 'build\\scripts\\components.sh'
bat 'bash build\\scripts\\components.sh'
}
}
stage('Common') {
steps {
sh 'build\\scripts\\common.sh'
bat 'bash build\\scripts\\common.sh'
}
}
stage('Client') {
steps {
sh 'build\\scripts\\client.sh'
bat 'bash build\\scripts\\client.sh'
}
}
stage('People') {
steps {
sh 'build\\scripts\\people.sh'
bat 'bash build\\scripts\\people.sh'
}
}
}