change paralell

This commit is contained in:
jamesread 2021-10-18 08:57:39 +01:00
parent 2f2f3bf61a
commit ea07ba4582
1 changed files with 6 additions and 10 deletions

10
Jenkinsfile vendored
View File

@ -21,19 +21,15 @@ pipeline {
stage ('Post-Compile') { stage ('Post-Compile') {
parallel { parallel {
stage('Codestyle') { codeStyle: {
steps {
sh 'make daemon-codestyle' sh 'make daemon-codestyle'
sh 'make webui-codestyle' sh 'make webui-codestyle'
} },
} unitTests: {
stage('UnitTests') {
steps {
sh 'make daemon-unittests' sh 'make daemon-unittests'
} }
} }
} }
}
} }
} }