Revert "change paralell"

This reverts commit ea07ba4582.
This commit is contained in:
jamesread 2021-10-18 08:59:20 +01:00
parent ea07ba4582
commit d704f30bf1
1 changed files with 10 additions and 6 deletions

10
Jenkinsfile vendored
View File

@ -21,15 +21,19 @@ pipeline {
stage ('Post-Compile') { stage ('Post-Compile') {
parallel { parallel {
codeStyle: { stage('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'
} }
} }
} }
}
} }
} }