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

16
Jenkinsfile vendored
View File

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